let max_int (x: int) (y: int) : int =
  if x > y then
    x
  else
    y