void main() { int a = 0; a = a ^ 2; print a; a ^= 7; print a; long b = 0L; b = b ^ 2L; print b; b ^= 7L; print b; }