and 85 B

1234567
  1. void main() {
  2. int a = 7;
  3. a = a & 15;
  4. test(a);
  5. a &= 9;
  6. test(a);
  7. }