A+B: Difference between revisions

Content added Content deleted
mNo edit summary
Line 2,804: Line 2,804:


=={{header|Nanoquery}}==
=={{header|Nanoquery}}==
<lang Nanoquery>
<lang Nanoquery>// get a line of input
// get a line of input
line = input()
$line = input()

// split the line
// split the line
$strings = split($line, " ")
strings = split(line, " ")

// add the two numbers and print the result
// add the two numbers and print the result
println int($strings[0]) + int($strings[1])
println int(strings[0]) + int(strings[1])</lang>
</lang>


=={{header|Neko}}==
=={{header|Neko}}==