CCC '00 J1 - Calendar

View as PDF

Submit solution

Points: 5
Time limit: 1.0s
Memory limit: 256M

Problem type
Canadian Computing Competition: 2000 Stage 1, Junior #1

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.

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

Sample Input

3 30

Sample Output

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

Comments

There are no comments at the moment.