Meet & Greet

Write a program which (in order):

  1. Asks the user for their name. Store this as a variable.
  2. Prints a "pleased to meet you" message to the console. Make sure to include their name in the message.
  3. Asks the user for their favorite color. Store this as another variable.
  4. Prints the length of their name to the console.
  5. Prints their favorite color to the console.

This might be an example run of your program.

What is your name? Alice
Pleased to meet you Alice
What is your favorite color? Blue
Your name has 5 letters
Your favorite color is Blue