void main() { int a = 7; a = a & 15; print a; a &= 9; print a; long b = 7L; b = b & 15L; print b; b &= 9L; print b; }