Cod sursa(job #2982247)
Utilizator | Data | 19 februarie 2023 19:27:08 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
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');
rewrite(f1);
readln(f1,a,b);
reset(f2);
writeln(f2,a+b);
close(f1);
close(f2);
end.