import time time.sleep(2) print( "Are you a good match?" ) time.sleep(2) name1 = input( "What is the first person's name: " ) length1 = len( name1 ) time.sleep(2) name2 = input( "And what is the second person's name: " ) length2 = len( name2 ) match = ( length1 * length2 % 11) time.sleep(2) if match <= 2: print( "0-2, You are a terrible match! " ) elif match <= 5: print( "3-5, Don't try " ) elif match <= 8: print( "6-8, You two are a good match " ) elif match <= 10: print( "9-10, You guys are perfect match " )