# -*- coding: utf-8 -*- """ Created on Sat Feb 2 10:52:38 2019 A computer program that asks the user for their name and the year they were born and prints out their age @author: Yen-hua """ userName = input("Hello, what is your name?\n") print("Nice to meet you " + userName + "!") year = input("What year you were born?") born = 2019-int(year) born = str(born) print("you are " + born + "!") # 1)Ask the user when they were born # 2)Print out when they were born # 3)Print out how old they are WITHOUT asking them # YOUR CODE HERE # CHALLENGE # C1)Check the user has an real birth year # C2)Check the person has a real name