A+B: Difference between revisions

Content deleted Content added
mNo edit summary
Line 2,804:
 
=={{header|Nanoquery}}==
<lang Nanoquery>// get a line of input
// 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])</lang>
</lang>
 
=={{header|Neko}}==