9 lines
101 B
Python
9 lines
101 B
Python
# Test of 'input' function.
|
|
|
|
s: str = ""
|
|
|
|
s = input()
|
|
while len(s) > 0:
|
|
print(s)
|
|
s = input()
|