8 lines
171 B
Text
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])
|