fork download
  1. print("Hello world!")
  2. print("Dziś jest poniedziałek")
  3. print("Idziemy na spacer")
  4. print("Robimy ciasto")
  5. print("3+5")
  6. print(3+5)
  7. print(5-3)
  8. print(5*3)
  9. print(6/2)
Success #stdin #stdout 0.01s 7144KB
stdin
Standard input is empty
stdout
Hello world!
Dziś jest poniedziałek
Idziemy na spacer
Robimy ciasto
3+5
8
2
15
3