PY
py
1
2
3
4
5
6
7
8
# MADE BY HARSH
import calendar
#Enter the year
year = int(input("Enter the year: "))
#Enter the month number eg:- March is 3
month = int(input("Enter the month number: "))
print(calendar.month(year, month))
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run