Cod sursa(job #582703)
Utilizator | Data | 15 aprilie 2011 18:53:48 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | fpc | Status | done |
Runda | Lista lui wefgef | Marime | 0.22 kb |
const
fi = 'adunare.in';
fo = 'adunare.out';
var
f : text;
a, b : longint;
begin
assign(f,fi);
reset(f);
read(f,a,b);
close(f);
assign(f,fo);
rewrite(f);
write(f,a+b);
close(f);
end.