fn f(i:u8){if i<16{f(i+2);f((i+2)^1)}else{print((i&1).to_str())}}fn main(){f(0)}