Answer:
phrase=str(input("Waht is your phrase?\\"))#prompting phrase.
rep=int(input("How many times should I repeat it?"))#prompting repetitions integer.
print(phrase*rep)#printing the phrase.
Output:-
What is your phrase? 
My name is Mark. 
How many times should I repeat it? 
4
My name is Mark. My name is Mark. My name is Mark. My name is Mark. 
Step-by-step explanation:
I have coded in python language.First I am prompting the phrase form the user in the variable phrase,then I am prompting the integer for repetitions in the variable name rep.Then printing the phrase for rep number of times.