import sys input=lambda: sys.stdin.readline().rstrip() a,b=map(float,input().split()) ans=a+b if int(ans)==ans: print(int(ans)) else: print(ans)