6 lines
69 B
Text
6 lines
69 B
Text
var
|
|
a, b: integer;
|
|
begin
|
|
readln(a, b);
|
|
writeln(a + b);
|
|
end.
|