Write a program that prints which day is Easter Sunday of a given year (remember that Easter Sunday is a mobile holiday that corresponds to the first Sunday after the first full moon of the spring.
To solve this problem, use the Gauss method. The Gauss method to find the day (D) and the month (M) that corresponds to the Easter Sunday of a year (Y) is:
Input
Input is a year (integer number) between 1800 and 9999.
Output
The output is two integer numbers in a line, separated by a slash. The first is the day and the second is the month which correspond to the Easter Sunday of the given year using Gauss method.
Input
2006
Output
16/4
Input
1999
Output
4/4