Exercise: Type Conversion
# Exercise: Type Conversion
birth_year = int(input('What year were you born ?'))
age = 2025 - birth_year
print(f"\nYour age is: {age}")
INFO
# Exercise: Type Conversion
birth_year = int(input('What year were you born ?'))
age = 2025 - birth_year
print(f"\nYour age is: {age}")