프로그램 명: coci_datum
제한시간: 1 초

2009 년의 날(D) , 달(M)을 입력으로 받아 이 날의 요일을 출력하는 문제이다.


Write a program that, given a date in 2009, determines the day of week on that date.

입력

The first line contains two positive integers D and M separated by a space. The numbers will be a valid date in 2009.

출력

Output the day of the week on D. M. 2009. The output should be one of the words "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" or "Sunday".

입출력 예

input 

1 1 

output 

Thursday 

input 

17 1 

output 

Saturday 

input 

25 9 

output 

Friday
출처: coci 2008/2009 contest4 2/6

[질/답] [제출 현황] [푼 후(2)]
[ 채 점 ] [홈으로]  [뒤 로]