The program below will ask the user for a name, then print the "Happy Birthday" song for that person. There are only two print() statements, and initially the program works as follows:

What's your name? Bugs
Happy birthday to you, Happy birthday to you,
Happy birthday, dear Bugs, Happy birthday to you
Add escape sequences to the existing print() statements to change the program output as follows:

Each "Happy" word should start on a new line.
Each line except for the first should be indented to the right with one tab.
The user's name should be surrounded by double quotes.
The following examples demonstrate the expected program output.

What's your name? Bugs
Happy birthday to you,
Happy birthday to you,
Happy birthday, dear "Bugs",
Happy birthday to you
What's your name? Daffy
Happy birthday to you,
Happy birthday to you,
Happy birthday, dear "Daffy",
Happy birthday to you
Remember, just add escape sequences in the existing print() statements; don't add any new print() statements.

name = input("What's your name? ")

print("Happy birthday to you, Happy birthday to you,")
print("Happy birthday, dear " + name + ", Happy birthday to you")

name = input("What's your name? ")

print("Happy birthday to you,\n\tHappy birthday to you,")
print("\tHappy birthday, dear \"" + name + "\",\n\tHappy birthday to you")