name1 = input( "What is the first person's name: " ) length1 = len( name1 ) name2 = input( "What is the second person's name: " ) length2 = len( name1 ) love = (length1*length2)%11 print(love) if love<3 and love>0 : print("you're terrible match") elif love<5 and love>3 : print("you probably shouldn't bother" ) elif love<9 and love>5 : print("you're a good match" ) else : print("you're are perfect match" )