Cod sursa(job #120896)

Utilizator MihaiBunBunget Mihai MihaiBun Data 7 ianuarie 2008 08:56:24
Problema A+B Scor 100
Compilator fpc Status done
Runda Arhiva de probleme Marime 0.2 kb
program adunare;
var f:text;
    a,b:integer;
begin
  assign(f,'adunare.in');
  reset(f);
  read(f,a,b);
  close(f);
  assign(f,'adunare.out');
  rewrite(f);
  write(f,a+b);
  close(f);
end.