write a program of given word w and number n and prints the given word n times in a single line

 write a program of given word w and number n and prints the given word n times in a single line

        

    w=input()

    n=int(input())

    print(w*n)

Comments