Excercise: Type Conversion
birth_year = int(input('What year were you born?:'))
current_year = 2025
age = current_year - birth_year
print(f'Your age is {age}')INFO
birth_year = int(input('What year were you born?:'))
current_year = 2025
age = current_year - birth_year
print(f'Your age is {age}')