fn main(x: i32) -> i32 { let y = 0; if x == 5 { y = 2 * x; } else { y = 3 * x; } return y; }