773 760 1518
'''
get a number from input and save to a
get a number from input and save to b
add a and b, and save c
print c to the console
'''
# avery
a=input()
a=int(a)
# natalie
b=input()
b=int(b)
# kang
c=a+b
# eric
print(c)
Question