Program to display calendar of the given month and year

import calendar

yy = int(input("Enter Year : "))  

mm = int(input("Enter Month : "))    

print(calendar.month(yy, mm))

Comments