Time Limit: 1s
Memory Limit: 128MB
년과 월을 입력으로 받아 해당 월의 달력을 출력하는 프로그램을 작성하세요.
Write a program that prompts the user to enter the year and the month and displays the calendar table for the year on the console.
* Line 1 : year (1,600~3,000)
* Line 2 : month (1~12)
Sample Output 참조
2013 1
Sun Mon Tue Wed Thu 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 31
Chapter 6.11 참고
JAVA2015 PE5.29