re-organise repo

This commit is contained in:
2023-11-16 10:48:53 +00:00
parent f62c52d8a9
commit f133e157a1
87 changed files with 11792 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
numbers = []
while True:
a = input("")
if a == "a":
break
numbers.append(a)
print(numbers)