4 lines
132 B
Python
4 lines
132 B
Python
content = input("Enter string you want to display: ")
|
|
times = int(input("Enter number of times to display: "))
|
|
print(content*times)
|