A retail company runs a special promotional event called a Super-Discount Year based on the current calendar year.
A year is classified as a Super-Discount Year if:
For example:
1500, 2010, 2030, 2500.1900, 2100, 2024.A program is needed that will take a year as an integer input from the user, determine whether it is a Super-Discount Year or not, and output an appropriate message.
Write a program to solve this problem.
You can use the layout below to structure your code:
year = int(input("Enter a year: "))
# Write your code here