Create a flowchart that describes the following steps:
• Create a variable named, current_year, with the integer value 2021.
• Print "Welcome! What is your name?"
• On the same line, read the name of the user and store it into a variable called, user_name.
Print "Hi, " followed by the user's name, on the same line, followed by a period.
• Prompt the user with "How old are you?" and input their response (a string of digits).
• Convert their response to an integer and store it in a variable called, user_age.
• Calculate the user's year of birth and save it in a variable called, user_birth.
• Print "You were born in ", followed by the user's year of birth, followed by a period, all on
the same line.