김대철

Add echo.py

Showing 1 changed file with 7 additions and 0 deletions
1 +def echo():
2 + while True:
3 + a = input()
4 + print(a)
5 +
6 +
7 +echo()