# Gabriela Shamblin
# 5/18/2021
# Solution to SI@UCF Program: Copy Machine

# Set your string and get the user's input
text = "Go Knights!"
loops = int(input("How many times do you want the message printed?\n"))

# Loop for how many times the user specifies
for i in range(loops):
	print(text)
