| 比赛 | 20091023练习题 | 评测结果 | WWWWWWWWWW |
|---|---|---|---|
| 题目名称 | 不听话的机器人 | 最终得分 | 0 |
| 用户昵称 | EnAsn | 运行时间 | 0.000 s |
| 代码语言 | Pascal | 内存使用 | 0.00 MiB |
| 提交时间 | 2009-10-26 11:47:26 | ||
program ex;
var
n,m,x,y,ans:integer;
begin
assign(input,'nrobot.in');
assign(output,'nrobot.out');
reset(input);
rewrite(output);
readln(n,m,x,y);
{i believe springbrother!}
randomize;
ans:=random(m);
writeln(ans);
close(input);
close(output);
end.