比赛 20091102 评测结果 WAWWWWWWWA
题目名称 wordsa 最终得分 20
用户昵称 ReimBurSe. 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2009-11-02 12:36:44
显示代码纯文本
Program wordsa;

Var
n:longint;

Begin
assign(input,'wordsa.in');
assign(output,'wordsa.out');
reset(input);
rewrite(output);
readln(n);
writeln(n);
close(input);
close(output);
End.