# script to add two numbers
set a to input_number()
set b to input_number()
set res to a+b
print_int(res)