fork download
  1. from random import randint
  2.  
  3. print(1 if True else 2)
  4.  
  5. x = randint(0,9)
  6. print ("par" if x % 2 == 0 else "impar")
  7.  
  8. #https://pt.stackoverflow.com/q/161505/101
Success #stdin #stdout 0.02s 11556KB
stdin
Standard input is empty
stdout
1
impar