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