name = input("Your name:")
if len(name) > 6:
    print("Your name is possessed of many letters")
    print("You need a nickname; how about:", name[0:4])
elif len(name) < 3:
    print("Your name is concise and to the point")
    
if name[0] < 'F':
    print("Your name is early in the alphabet")
    
reply = input("Are you sick of this yet?")
if reply[0].lower() == 'y':
    print("Okay, sorry")