Cod sursa(job #491528)
Utilizator | Data | 11 octombrie 2010 18:52:01 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | fpc | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
program suma;
var a,b:integer;
f:text;
begin
assign(f,'adunare.in');
reset(f);
readln(f,a);
read(f,b);
close(f);
assign(f,'adunare.out');
rewrite(f);
write(f,a+b);
close(f);
end.