EXCERCISE 02
birth_year = input('what year were you born in ?')
print(birth_year)
age = 2026 - int(birth_year)
print(f'my age is {age}')
INFO
birth_year = input('what year were you born in ?')
print(birth_year)
age = 2026 - int(birth_year)
print(f'my age is {age}')