fork(1) download
  1. a=5
  2. b=6
  3. c=4
  4. print("a+b+c")
  5. print(a+b+c)
  6. print("a+b+c=""15")
Success #stdin #stdout 0.11s 14172KB
stdin


stdout
a+b+c
15
a+b+c=15