题解 | #参数解析#
参数解析
https://www.nowcoder.com/practice/668603dc307e4ef4bb07bcd0615ea677
s = input()
ss = ''
flag = False
count = 1
for i in s:
if i=='"':
flag = not flag
elif not flag and i==' ':
ss += '\n'
count += 1
else:
ss += i
print(count)
print(ss)