text=input("Give me some text: ") length1 = len( text ) Final = ( length1 * "-" ) print(text) print(Final) #works