RosettaCodeData/Task/A+B/Maxima/a+b.maxima
Ingy döt Net 776bba907c Sync
2013-10-27 22:24:23 +00:00

6 lines
203 B
Text

in_stream: openr("/dev/stdin");
unless (line: readline(in_stream), line=false) do (
q: map('parse_string, split(line, " ")),
print(q[1]+q[2])
);
close(in_stream);