csc-python-solutions/15/a/1.py
2021-02-17 10:25:35 +01:00

8 lines
121 B
Python

def getBASIC():
res = []
x=""
while not "END" in x.split():
x = input()
res.append(x)
return res