Cod sursa(job #291266)
Utilizator | Data | 29 martie 2009 16:57:21 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | fpc | Status | done |
Runda | The Beginners | Marime | 0.19 kb |
program suma;
var f:text;
a,b:longint;
begin
assign(f,'adunare.in'); reset(f);
read(f,a);
read(f,b);
close(f);
a:=a+b;
assign(f,'adunare.out'); rewrite(f);
write(f,a);
close(f);
end.