fork download
  1. a='hello'
  2. print(a)
  3.  
  4. b=('world')
  5. print(b)
Success #stdin #stdout 0.02s 9040KB
stdin
Standard input is empty
stdout
hello
world