Program BID1;
Var a, b, max: integer;
Begin
 writeln ('  : ');
 read (a, b);
 if a>b then max:=a else max:=b;
 writeln (' : ', max);
End.
