fork download
  1. # your code goes here
  2. b=20
  3. a=10
  4. l=[10,20,30]
  5.  
  6. for x in l:
  7. print(x,end=" ")
  8. print("hello")
  9.  
  10. if a>10:
  11. print("hello")
  12. else:
  13. print("not hello")
  14.  
  15.  
Success #stdin #stdout 0.07s 14056KB
stdin
Standard input is empty
stdout
10 20 30 hello
not hello