Cod sursa(job #833362)
Utilizator | Data | 12 decembrie 2012 15:10:53 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | fpc | Status | done |
Runda | Arhiva de probleme | Marime | 0.25 kb |
var f1,f2:text;
a,b,s:longint;
begin
assign(f1,'imput.txt');
reset(f1);
readln(f1,a);
readln(f1,b);
s:=a+b;
assign(f2,'output.txt');
rewrite(f2);
writeln(f2,s);
close(f2);
end.