name = input("What is your name?")
times = int(input("how many times?"))


Name = (name + ' ') * times

print(Name.strip())