name1 = input( "What is the first person's name: " ) name2 = input( "What is the second person's name: " ) length1 = len( name1 ) length2 = len( name2 ) lovematch = (length1* length2)%11 print("your love is", lovematch) if lovematch < 3 : print ("How, how just how brake up right now!") quit if lovematch == 3 : print("maybe you guys shouldent be together") quit if lovematch == 6 : print ("you can allways find better but your better of staying") quit if lovematch == 8 : print ("Good match mgiht wanna keep him/her close") quit if lovematch == 9 : print ("nearly perfect stay together or else") quit if lovematch == 10 : print ("perfect! wow first person with perfect in 20 years") quit()