fork(1) download
  1. x = 5
  2. y = 13
  3.  
  4. print(bin(x), bin(y))
  5.  
  6. x |= y;
  7.  
  8. print(x)
Success #stdin #stdout 0.02s 27712KB
stdin
Standard input is empty
stdout
0b101 0b1101
13