A,B=input().split() if B[0]=='-': print(int(A)+int(B)) else: P=A+B while len(P)!=1 and P[0]=='0': P=P[1:len(P)] print(P)