import calendar
# Enter the month and year
#yy = int(input(“Enter year: “))
#mm = int(input(“Enter month: “))

# display the calendar
#print(calendar.month(yy,mm))

# Enter the month and year
yy = int(input(“Enter year: “))

# display the calendar
for i in range(1,13):
print(calendar.month(yy,i))


Leave a Reply

Your email address will not be published. Required fields are marked *