# Arup Guha
# 1/23/2012
# If Statement Examples

def main():

    age = int(input("How old are you?\n"))

    fakeID = False

    if age >= 21 or fakeID:
        print("Great it's time for happy hour!\n")
        print("Bye!\n")
    else:
        print("You can come to happy hour.\n")
        print("But, hold the rum...\n")

    # Not in the if statement because of indentation.
    print("Thanks for using my program.\n")

main()
        
