| 比赛 | noip20081103 | 评测结果 | EEEEEEEEEE |
|---|---|---|---|
| 题目名称 | 奶酪工厂 | 最终得分 | 0 |
| 用户昵称 | yueru | 运行时间 | 0.000 s |
| 代码语言 | Pascal | 内存使用 | 0.00 MiB |
| 提交时间 | 2008-11-03 21:01:33 | ||
Program Test;
Var
fin, fout: text;
a, b: longint;
Begin
Assign(fin, 'aplusb.in'); Reset(fin);
Assign(fout, 'aplusb.out'); Rewrite(fout);
Readln(fin, a, b);
Writeln(fout, a+b);
Close(fin);
Close(fout);
End.