Cod sursa(job #488902)

Utilizator JusticeDan MIT Justice Data 30 septembrie 2010 16:06:21
Problema A+B Scor 0
Compilator fpc Status done
Runda Arhiva de probleme Marime 0.18 kb
var a,b:Longint;
    f:text;
begin
assign(f,'adunare.in.txt');
reset(f);
read(f,a);
read(f,b);
close(f);
assign(f,'adunare.out.txt');
rewrite(f);
write(f,a+b);
close(f);
end.