Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

in python The date June 10, 1960, is special because when it is written numerica

ID: 3745650 • Letter: I

Question

in python

The date June 10, 1960, is special because when it is written numerically the month time the day equals the year: 6/10/60--> 6* 10 = 60 Design a program that asks the user to enter a month (in numeric form), a day, and a two-digit year in three separate inputs. The program should determine whether the month times the day equals the year. If so, it should print "This date is magic!" Otherwise, it should print, "This date is not magic." SAMPLE RUN # 1: python3 MagicDates.py Interactive Session Cide invisible Highlight Enter month (numeric):12 Enter day:8 Enter-two digit.year:96 This date is magicl SUBMIT monthe input (int("Enter month (numeric):")) days input (int ("Enter day :")) day- input (int("Enter two-digit year) if month day year print(" This date is magic!") else: printC This date is not magic)

Explanation / Answer

month = int(input("Enter month (numeric):"))

day = int(input("Enter day:"))

year = int(input("Enter two-digit year:"))

# a colon must be there at the end of if

if month*day == year:

print("This day is magic!")

else:

print("This day is not magic")

''' SAMPLE OUTPUT

Enter month (numeric): 12

Enter day: 8

Enter two-digit year: 96

This day is magic!

'''