a, b = input().split() try: print(int(a) + int(b)) except: print(a + b)