@@ -0,0 +1,9 @@
from datetime import datetime
d, m = map(int, input().split())
date = datetime(year=2009, month=m, day=d)
print(
["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"][
date.weekday()
]
)
The note is not visible to the blocked user.