308. Excercise: Type Conversion
#try:
birth_year = input('What year were you born? ')
age = 2025 - int(birth_year)
print(f"your age is: {age})
###except EOFError:
print("1984")INFO
#try:
birth_year = input('What year were you born? ')
age = 2025 - int(birth_year)
print(f"your age is: {age})
###except EOFError:
print("1984")