Age Calculator
Given a birth year and the current year, calculate and print the person's age in years.
What the problem means: rather than relying on today's actual date (which would make the expected answer change depending on when this is run), both the birth year and the "current" year are given as input, so the calculation is fully reproducible.
Approach: subtract the birth year from the given current year.
Input: Two lines: the birth year, then the current year.
Output: One line: Age: <age>
2000 2026
Age: 26
- 1900 <= birth year <= current year <= 2200
Hint 1
Age is simply the difference between the current year and the birth year.
Hint 2
f"Age: {current_year - birth_year}" produces the exact required format.
Age in whole years is just currentyear - birthyear. Taking both years as input (rather than using datetime.date.today()) keeps the expected output fixed and reproducible regardless of when the program actually runs.