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