RosettaCodeData/Task/A+B/ALGOL-W/a+b.alg

6 lines
66 B
Text
Raw Permalink Normal View History

2015-11-18 06:14:39 +00:00
begin
integer a, b;
read( a, b );
write( a + b )
end.