Var a:array[1..15] of integer; max,i:integer; begin for i:=1 to 15 do begin readln(a[i]); if a[i]>max then max:=a[i]; end; writeln(max); end.