RosettaCodeData/Task/A+B/Nanoquery/a+b.nanoquery
2023-07-01 13:44:08 -04:00

8 lines
171 B
Text

// 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])