RosettaCodeData/Task/A+B/ALGOL-W/a+b.alg
2023-07-01 13:44:08 -04:00

5 lines
66 B
Text

begin
integer a, b;
read( a, b );
write( a + b )
end.