Input exercise
birth_year = input('What year were you born?')
birth_year = 1977
age = 2019 - int(birth_year)
print(f' your age is : {age}')
INFO
birth_year = input('What year were you born?')
birth_year = 1977
age = 2019 - int(birth_year)
print(f' your age is : {age}')