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 a good day", end=" ")

print("to have a good day")