Cod sursa(job #1202365)
Utilizator | Data | 27 iunie 2014 20:17:30 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | fpc | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
var a,b,s:longint;
f:text;
begin
assign(f,'adunare.in'); reset(f);
readln(f,a);
read(f,b);
close(f);
s:=a+b;
assign(f,'adunare.out'); rewrite(f);
write(f,s);
close(f);
end.