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