name = input("Enter your name: ") count = int(input("Enter how many times do you want to see your name: ")) print("".join(name * count))