func a(_ x: Int) -> Int { switch x { case 0: 1 default: 0 } } func b(_ x: Int) -> Int { if (x < 42) { 1 } else { 0 } }