Write an if-else statement with multiple branches.
If year is 2101 or later, print "Distant future" (without quotes). Otherwise, if year is 2001 or greater, print "21st century". Otherwise, if year is 1901 or greater, print "20th century". Else (1900 or earlier), print "Long ago".
Sample output with input: 1776
What am I doing wrong here!!!!!!
I've tried it with =>
and just >
It isn't running the final submission
Testing with input: 1901
Output differs. See highlights below.
Your output
Long ago
Expected output
20th century
