The program below has multiple print() statements that display text on individual lines. Modify the print() statements (where needed) with end=" " to force the output into 2 output lines to match the expected output.

The following example demonstrates the expected program output.

Today is a good day
to have a good day

print("Today is")
print("a good")
print("day")
print("to have")
print("a good")
print("day")

print("Today is", end=" ")

print("a good", end=" ")
print("day")
print("to have", end=" ")
print("a good", end=" ")
print("day")