题解列表

筛选

细节补充

摘要:首先给出题解 ```python a=list(input()) print(len(a)) for i in range(len(a)): print(int(a[i]),end=……