
Question: Create a script that asks the user to enter their age, and the script calculates the user's year of birth and prints it out in a string like in the expected output. Please make sure you generate the current year dynamically.
Expected output:
We think you were born back in 1988

Hint 1: Use input to prompt the user for their age.

Hint 2: To get the current year, use datetime.datetime.now().year .