x = str(input("Enter the Name :"))
y = int(input("Enter the number of times to print: "))

print(x*y)
     
           
Note: Need to be arranged in compiler after copied
   

 OutPut:

Enter the Name :Python
Enter the number of times to print: 4
PythonPythonPythonPython