raining = True
if raining:
    print "Bring Umbrella."
else:
    print "Wear Sundress."
    
def if_odd(x):
    return x%2==1