Cod sursa(job #963173)

Utilizator viruxRobert virux Data 16 iunie 2013 18:43:21
Problema A+B Scor 100
Compilator fpc Status done
Runda Arhiva de probleme Marime 0.21 kb
program ab;
var f : text;
    x,y : longint;

begin
    assign(f,'adunare.in'); reset(f);
    readln(f,x); read(f,y);
    close(f);
    assign(f,'adunare.out'); rewrite(f);
    write(f,x+y);
    close(f);
end.