fork download
  1. n=5
  2. k=7
  3. print(n>3 or k>10)
  4. print(n>3 and k>10)
  5. print(not(n>3 and k>10))
  6.  
Success #stdin #stdout 0.04s 9624KB
stdin
Standard input is empty
stdout
True
False
True