fn square_of_greater(a: i32, b: i32) -> i32 { if (a > b) a * a else b * b } fn main() -> i32 { return square_of_greater(2i32 + 2, 5i32); }