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