The program below should ask the user for their two favorite things and print them in messages. The print() statements are completed for you. Take the following steps to finish the program.

Initialize a variable named faveThing and store the first value a user enters using the input() method.
Initialize a variable named faveThing2 and store the second value a user enters using another call to the input() method.
The following examples demonstrate the expected program output.

What is your favorite thing? cats
What is your second favorite thing? cheese
I also love cats :D
I hope you have a great day full of cats and cheese!
What is your favorite thing? programming
What is your second favorite thing? reading

I also love programming :D
I hope you have a great day full of programming and reading!
Note that the automated test cases will provide different input values than the examples demonstrated above.

# Ask user for their most favorite thing

# Ask user for their second favorite thing

print("I also love", faveThing,":D")
print("I hope you have a great day full of", faveThing, "and", faveThing2+"!")

# Ask user for their most favorite thing

faveThing = input("What is your favorite thing? ")

# Ask user for their second favorite thing
faveThing2 = input("What is your second favorite thing? ")

print("I also love", faveThing,":D")
print("I hope you have a great day full of", faveThing, "and", faveThing2+"!")