Cod sursa(job #308637)
Utilizator | Data | 28 aprilie 2009 01:11:02 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | fpc | Status | done |
Runda | tot | Marime | 0.25 kb |
{ http://infoarena.ro/problema/adunare }
var a,b:longint;
f:text;
begin
assign(f,'adunare.in'); reset(f);
readln(f,a); readln(f,b);
close(f);
assign(f,'adunare.out'); rewrite(f);
writeln(f,a+b);
close(f);
end.