Cod sursa(job #95504)
Utilizator | Data | 29 octombrie 2007 11:07:11 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | fpc | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
var f: text;
a, b: longint;
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.