fn square_of_greater(a: i32, b: i32) -> i32 {
   if (a > b)
      a * a
   else
      b * b
}