fork download
  1. a = 123.4
  2. b23 = 'Spam'
  3. first_name = "Bill"
  4. b = 432
  5. c = a + b
  6. print("a + b is",c)
  7. print("first_name is",first_name)
  8. print("Sorted Parts, After Midnight or",b23)
Success #stdin #stdout 0.02s 5852KB
stdin
Standard input is empty
stdout
a + b is 555.4
first_name is Bill
Sorted Parts, After Midnight or Spam