Cod sursa(job #544427)

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