Answer:
print('Hello world!')
print('Spam')
print('Eggs')
print('SpamEggs')
print('SpamEggs')
print('Spam Eggs')
print(7)
print(20)
print(13)
print('5k')
print(13)
print('10.8m')
print(2.72)
Step-by-step explanation:
Integers and floats don't need quotes, but if you want to combine it with a string, then you need a quote. Hope that this solution is what you are looking for!