7 lines
84 B
Text
7 lines
84 B
Text
module ABProblem;
|
|
var
|
|
a,b: integer;
|
|
begin
|
|
read(a,b);
|
|
writeln(a+b)
|
|
end ABProblem.
|