Fix the Poem
This poem has two bugs. Find and fix them so it prints:
text
Roses are red Violets are blue Coding is fun And so are you
python
print("Roses are red")
"Violets are blue"
print("Coding is fun")
print('And so are you")
This poem has two bugs. Find and fix them so it prints:
Roses are red Violets are blue Coding is fun And so are you