| 比赛 | 20091112练习 | 评测结果 | WWWWWWWWW |
|---|---|---|---|
| 题目名称 | 滑雪队 | 最终得分 | 0 |
| 用户昵称 | Hamster | 运行时间 | 0.000 s |
| 代码语言 | Pascal | 内存使用 | 0.00 MiB |
| 提交时间 | 2009-11-12 11:40:13 | ||
program nar;
var
n,nn,i:longint;
begin
assign(input,'nar.in');
assign(output,'nar.out');
reset(input);
rewrite(output);
randomize;
{I believe Spring Brother!!!!}
readln(n);
read(nn);
i:=random(nn div 10);
write(n-i);
close(input);
close(output);
end.