Cod sursa(job #532283)

Utilizator boti12botiGal Botond boti12boti Data 11 februarie 2011 11:50:02
Problema A+B Scor 100
Compilator fpc Status done
Runda Arhiva de probleme Marime 0.19 kb
var a,b:integer;      f,g:text;
begin
  assign(f,'adunare.in');
  reset(f);
  readln(f,a); readln(f,b);
  close(f);
 assign(g,'adunare.out');
 rewrite(g);
 write(g,a+b);
 close(g);
 end.