from decimal import * getcontext().prec = 100 a, b = input().strip().split() print(Decimal(a) + Decimal(b))