6 lines
110 B
Text
6 lines
110 B
Text
# script to add two numbers
|
|
set a to input_number()
|
|
set b to input_number()
|
|
set res to a+b
|
|
|
|
eval print_int(c)
|