Initial commit

This commit is contained in:
github-classroom[bot]
2021-04-04 18:11:58 +00:00
commit 9f1681bb23
342 changed files with 35807 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
# Test of 'input' function.
s: str = ""
s = input()
while len(s) > 0:
print(s)
s = input()