fork download
  1. class LikeInt(int):
  2. def __init__(self, value):
  3. return int.__init__(value)
  4.  
  5. a = LikeInt(1)
  6. b = LikeInt(26)
  7.  
  8. print(a + b)
Success #stdin #stdout 0.03s 9660KB
stdin
Standard input is empty
stdout
27