记录编号 22187 评测结果 WWWWWWWWWW
题目名称 教官 最终得分 0
用户昵称 Gravatarmate 是否通过 未通过
代码语言 Pascal 运行时间 0.001 s
提交时间 2010-11-17 16:18:38 内存使用 0.11 MiB
显示代码纯文本
program mwt;
var
f:text;
a,b,c,d,e,g:longint;
begin
assign(f,'officer.in');reset(f);
readln(f,a,b,c,d,e,g);assign(f,'officer.out');rewrite(f);
if a<=b then a:=b;
if a<=c then a:=c;
if a<=d then a:=d;
if a<=e then a:=e;
if a<=g then a:=g;
write(f,a);close(f);
end.