# Program to read a work and print each letter of the word twice in the same line and then breaks the line word = raw_input("Read a word: ") for letter in word: print letter, letter, "\n"