# Arup Guha
# 6/14/2023
# Copy guy!

# Prints out the string s, exactly n times.
def copyguy(s, n):

    if n > 0:
        copyguy(s, n-1)
        print(s)

# My main.
def main():

    # Get a message and # of times.
    msg = input("What message do you have?\n")
    times = int(input("How many times do you want to deliver it?\n"))

    # Call the function!
    copyguy(msg, times)

main()
