fn main() -> i64 { let x = 5; match x { 1 => { print_i64(10); } 2 => { print_i64(20); } 5 => { print_i64(50); } _ => { print_i64(99); } } return 0; }