fork download
  1. print(bin(0b111 | 0b100))
  2. print(bin(0b111 & 0b100))
Success #stdin #stdout 0.03s 9208KB
stdin
Standard input is empty
stdout
0b111
0b100