A, B = input().split() if A.isdigit() and B.isdigit(): print(int(A)+int(B)) else: print(A+B)