Cod sursa(job #225694)

Utilizator ildikoprecupPrecup Ildiko ildikoprecup Data 30 noiembrie 2008 19:37:09
Problema A+B Scor 100
Compilator fpc Status done
Runda Arhiva de probleme Marime 0.15 kb
var a,b:longint;
f:text;
begin
assign(f,'adunare.in');
reset(f);
read(f,a,b);
assign(f,'adunare.out');
rewrite(f);
write(f,a+b);
close(f);
end.