Cod sursa(job #555091)

Utilizator chereches_bmchereches florian chereches_bm Data 15 martie 2011 11:47:48
Problema A+B Scor 0
Compilator fpc Status done
Runda Arhiva de probleme Marime 0.18 kb
program suma;
var a,b,s:integer;
    f:text;
begin
assign(f,'suma.in');reset(f);
read(f,a,b,s);close(f);
s:=a+b;
assign(f,'suma.out');rewrite(f);
write(f,s);close(f);
end.