The program below asks the user for 3 input values (name, age, place). You will add a str.format() call to build a message with the input values.

Use str.format() to build a string with this pattern:
"My name is [name] and I am [age] years old. I am from [place].", where [name], [age], and [place] are values from the input variables.
Use print() to display the result to the screen.
The following examples demonstrate the expected program output.

What is your name? Jose
How old are you? 18
Where are you from? Miami
My name is Jose and I am 18 years old. I am from Miami.
What is your name? Jill
How old are you? 15
Where are you from? Atlanta
My name is Jill and I am 15 years old. I am from Atlanta.

name = input("What is your name? ")
age = input("How old are you? ")
place = input("Where are you from? ")

# student code here

name = input("What is your name? ")

age = input("How old are you? ")
place = input("Where are you from? ")

message = "My name is {} and I am {} years old. I am from {}.".format(name, age, place)
print(message)