https://codingbat.com/python/Logic-1
cigar_party
def cigar_party(cigars, is_weekend):
if is_weekend and cigars >= 40:
return True
elif cigars >= 40 and cigars <= 60:
return True
return False
date_fashion
def date_fashion(you, date):
if you <= 2 or date <= 2:
return 0
elif you >=8 or date