Pagini recente » Cod sursa (job #20733) | Cod sursa (job #1276397) | Cod sursa (job #2331941) | Cod sursa (job #292379) | Cod sursa (job #309060)
Cod sursa(job #309060)
Utilizator |
Indricean Mihai mike93 |
Data |
29 aprilie 2009 15:39:42 |
Problema |
A+B |
Scor |
100 |
Compilator |
fpc |
Status |
done |
Runda |
tot |
Marime |
0.23 kb |
program adunare;
var a,b,c:longint;
fin,fout:text;
begin
assign(fin,'adunare.in'); reset(fin);
assign(fout,'adunare.out'); rewrite(fout);
readln(fin,a); readln(fin,b);
close(fin);
c:=a+b;
writeln(fout,c);
close(fout);
end.