Cod sursa(job #2982248)
Utilizator | Data | 19 februarie 2023 19:30:28 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | fpc | Status | done |
Runda | Arhiva de probleme | Marime | 0.26 kb |
program p1;
var a ,b:int64;
f1,f2:text;
begin
assign(f1,'adunare.in');
assign(f2,'adunare.out');
reset(f1);
readln(f1,a,b);
rewrite(f2);
writeln(f2,a+b);
close(f1);
close(f2);
end.