Cod sursa(job #612826)

Utilizator GheorghePPisarenco Gheorghe GheorgheP Data 10 septembrie 2011 14:54:17
Problema A+B Scor 0
Compilator fpc Status done
Runda test_info20 Marime 0.21 kb
program adunarea;
var a,b : integer;
    f : text;
begin
assign(f, 'input.in');
reset(f);
read(f, a);
readln(f);
read(f, b);
close(f);

assign(f,'output.out');
rewrite(f);
write(f,a+b);
close(f);
end.