Answer:
year = 1776
if year >= 2101:
print("Distant future")
elif year >= 2001:
print("20th century")
else:
print("Long ago")
Explanation:
Alternatively, if you wanted the user to assign a value to the "year" variable. You could replace year = 1776 with year = int(input("Enter a year: "))