a, b = input().split() if len(a) == 1 and len(b) == 1: print(a+b) else: print(int(a) + int(b))