name1 = input( "What is the first person's name: " ) length1 = len( name1 ) name2 = input( "What is the first second name: " ) length2 = len( name2 ) chance = ((length2 * length1)%11) print("###############") print(chance) if chance <= 2: print("You are a terrible match") elif 3 <= chance >= 5: print("You probably shouldn't bother") elif 6 <= chance >= 8: print("You are a good match") elif 9 <= chance >= 10: print("You are a perfect match!")