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

6 lines
66 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
begin
integer a, b;
read( a, b );
write( a + b )
end.