Dorothydu's picture
Add files using upload-large-folder tool
11c6595 verified
name = input("Enter name: ")
num = int(input("Enter number of times: "))
if num > 10:
num = 3
name = "Too high"
for i in range(0,num):
print(name)
input("Press enter to continue")