Description
First year of new millenium is gone away. In commemoration of it write a program that finds the name of the day of the week for any date in 2001.
Input
Input is a line with two positive integer numbers $N$ and $M$, where $N$ is a day number in month $M$. $N$ and $M$ is not more than 100.
Output
Write current number of the day of the week for given date (Monday – number 1, … , Sunday – number 7) or phrase “Impossible” if such date does not exist.
Sample Input
|
|
Sample Output
|
|
Analysis
翻看日历,我们可以知道 2001 年 1 月 1 日为星期一。
这样,我们只需要计算输入的日期为该年中的第几天就行了。
当然,要记得判断输入的日期是否合法。
Solution
|
|