s=input().split() y=s[0]+s[1] c=0 try: c=int(y) except ValueError: c=int(s[0])+int(s[1]) print(c)