Answer
The output of the given program will be :
True
Work Step by Step
The __eq__ function is called by == operator, in the program __eq__ compares the value of the variable i of both class instances. Since both instances were initialized with same value the __eq__ function will return True which will be printed.