Question: 
Write a function to check whether the given month number contains 28 days or not.


Model's Code:
def check_monthnum_number(month):
    return month == 2



Sample Correct Code:
def check_monthnum_number(monthnum1):
  if monthnum1 == 2:
    return True
  else:
    return False


Asserts:
assert check_monthnum_number(2)==True
assert check_monthnum_number(1)==False
assert check_monthnum_number(3)==False


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 820 of 974: 627/820 (76.46341463414635%): success