fork download
  1. import random
  2.  
  3. x = random.randint(1 ,100)
  4. print(x)
  5. if x> 50:
  6. print("x>50")
  7. else:
  8. print("x < 50")
Success #stdin #stdout 0.02s 11552KB
stdin
Standard input is empty
stdout
27
x < 50