fork download
  1. no_blue_key = False
  2. no_red_key = False
  3. no_blue_chest = False
  4. no_red_chest =False
  5.  
  6. if no_blue_key and no_blue_chest:
  7. print("nothing")
  8. elif no_red_key and no_red_chest:
  9. print("nothing")
  10. else:
  11. print("nothing")
  12.  
Success #stdin #stdout 0.1s 14128KB
stdin
Standard input is empty
stdout
nothing