Files
ChocoPy/src/test/data/pa3/sample/input.py
T
2021-04-04 18:11:58 +00:00

9 lines
101 B
Python

# Test of 'input' function.
s: str = ""
s = input()
while len(s) > 0:
print(s)
s = input()