1a, b, c = "spoon", "plate", "glass"
2print(a)#seperate line
3print(b)#seperate line
4print(c)#seperate line
5print(a,", " +b, ", and " + c + " said hello")#same line
6
1print("If there was a birth every 7 seconds, there would be: ", births, "births")
2
1x = input("Enter the first number: ")
2y = input("Enter the second number: ")
3z = int(x)+int(y)
4#Just use a comma
5print("The sum of the numbers you entered =",z)
1print("If there was a birth every 7 seconds, there would be: {} births".format(births))
2