8 lines
121 B
Python
8 lines
121 B
Python
def getBASIC():
|
|
res = []
|
|
x=""
|
|
while not "END" in x.split():
|
|
x = input()
|
|
res.append(x)
|
|
return res
|