fork download
  1. class NoAddInt(int):
  2. def __add__(self, other):
  3. return '%s%s' % (self, other)
  4.  
  5.  
  6. a, b = NoAddInt(19), NoAddInt(20)
  7.  
  8. print(a + b)
Success #stdin #stdout 0.02s 8688KB
stdin
Standard input is empty
stdout
1920