fork download
  1. a = "Hello"
  2. b = "World"
  3. c = a + b
  4. print(c)
Success #stdin #stdout 0.01s 7076KB
stdin
Standard input is empty
stdout
HelloWorld