# Arup Guha
# 1/23/2012
# If Statement Example

def main():

    age = int(input("How old are you?\n"))

    if age >= 21:
        print("Great, you can go to happy hour!\n")
        print("Enjoy your rum and coke!\n")
    else:
        print("Well, I'll let you go to happy hour.\n")
        print("Just hold the rum...\n")

    if age >= 65:
        print("You get cheap haircuts and social security\n")
            
            

        
    print("Thank you for using this program!\n")

main()
              
