summaryrefslogtreecommitdiff
path: root/progs/a161.py
blob: b21de79ad7f26c28eae85d23ef3c87bc9434f705 (plain)
1
2
3
4
5
def check_monthnumber_number(monthnum3):
  if(monthnum3==4 or monthnum3==6 or monthnum3==9 or monthnum3==11):
    return True
  else:
    return False