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=",a+b+c)
Success #stdin #stdout 0.07s 14012KB
stdin


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