시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 128 MB58313153.448%

문제

Write a program to print out a calendar for a particular month given the day on which the first of the month occurs together with the number of days in the month.

Your program should take as input an integer representing the day of the week on which the month begins (1 for Sunday, 2 for Monday, …, 7 for Saturday), and an integer which is the number of days in the month (between 28 and 31 inclusive). Your program should print the appropriate calendar for the month. You can assume that all input data will be valid.

BOJ-specific note: None of the output lines should contain trailing whitespace. The last line must end with a newline.

예제 입력 1

3 30

예제 출력 1

Sun Mon Tue Wed Thr Fri Sat
          1   2   3   4   5
  6   7   8   9  10  11  12
 13  14  15  16  17  18  19
 20  21  22  23  24  25  26
 27  28  29  30