haenim

echo

Showing 1 changed file with 6 additions and 0 deletions
1 +def echo():
2 + i = input("입력해주세요: ")
3 + print(i)
4 +
5 +echo()
6 +