RosettaCodeData/Task/A+B/Nanoquery/a+b.nanoquery

9 lines
171 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
// get a line of input
line = input()
// split the line
strings = split(line, " ")
// add the two numbers and print the result
println int(strings[0]) + int(strings[1])