Answer:
This program is written in python. The complete code with detail description is given below in explanation section.
Step-by-step explanation:
year = int(input("Enter Year:"))
if year > 2101:
print("Future Distant")
elif year > 2001:
print("21st Century")
elif year > 1901:
print("20th Century")
elif year <1900:
print("Long Ago")
else:
print("No data exist for that year")
.......................................................................................................................
this code run successfully according to requirement as asked in question.