name1 = input("What is the first person's name: ")
length1 = len(name1)
name2 = input("What is the second person's name: ")
length2 = len(name2)

love_match = (length1 * length2)%11
print(love_match * " / " )

compatability_percentage = (love_match * 100) // 10
print(f"Compatability: {compatability_percentage}%")
if love_match < 9:
    if love_match < 6:
        if love_match < 3:
            print("You are a terrible match")
        else:
            print("You probably shouldn't bother")