02_arith_precedence.toy (111B)
1 fn __user_main(): i64 { 2 return 1 + 2 * 3 - 4 / 2 + 5 % 3; 3 } 4 5 fn main(): i32 { return __user_main() as i32; }