Cod sursa(job #16893)
Utilizator | Data | 14 februarie 2007 14:40:02 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | fpc | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
var a,b:integer;
begin
assign (input,'adunare.in'); reset (input);
assign(output,'adunare.out');rewrite (output);
readln (a,b);
write (a+b);
close (input); close (output);
end.0p