0
How to do this code
Write a program to take x and y as input and output the string x, repeated y times
4 Answers
+ 2
In what programming language?
+ 1
Phyton
+ 1
x, y = input(), int(input())
for i in range(y):
print(x)
+ 1
Ok thank you
Write a program to take x and y as input and output the string x, repeated y times