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