#The date June 10, 1960, is special because when it is written in the following format, the month times the day equals the year: 6/10/60.
#Design a program that asks the user to enter a month (in numeric form), a day, and a two-digit year.
#The program should then determine whether the month times the day equals the year. If so, it should display a message saying the date is magic. Otherwise, it should display a message saying the date is not magic.
#Prompt user to enter a date in numeric form.
month = int(input('Enter a month in numeric form: '))
day = int(input('Enter a day: '))
year = int(input('Enter a two-digit year: '))
#Determine whether the date is magic
if year == month * day:
print("This date is magic.")
else:
print("This date is not magic.")