이세진

initial commit

Showing 1 changed file with 8 additions and 0 deletions
1 +def echo():
2 + while(True):
3 + word = input("Enter the word: ")
4 + print(word)
5 + return
6 +
7 +
8 +echo()