def model_three(word): ans = word * len(word) return ans def main(): print("Starting main...") w = input("Enter a word: ") result = model_three(w) print(result) print("All done!") main()