langatator/examples/input_and_compute.ltor

6 lines
107 B
Text

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