class NoAddInt(int):
	def __add__(self, other):
		return '%s%s' % (self, other)
		
		
a, b = NoAddInt(19), NoAddInt(20)

print(a + b)