while True: try: s = str(input()) #print(s) o, e = [], '' #print(e) flag = False for i in s: if i == '"': flag = not flag elif i == ' ' and not flag: o.append(e) e = '' #空字符串 ...