def main():
    # call printTwice 10 times
    for i in range(10):
        # read a string and pass it to printTwice
        myString = raw_input("Enter string: ")
        printTwice(myString)
        

def printTwice(text):
    print text + ", " + text


main()
