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