from decimal import * getcontext().prec = 100 A,B=input().split() A=Decimal(A) B=Decimal(B) C=A+B print(int(C))