fork download
  1. class int:
  2. number = 2
  3. def __init__(self, number):
  4. self.number = number
  5. def __add__(self, other):
  6. return self.number + other.number + 1
  7.  
  8. two = int(2) # works without above def!
  9. print two + two
Success #stdin #stdout 0.02s 9016KB
stdin
Standard input is empty
stdout
5