1. sum=0 a=input() for i in a: sum=sum+int(i)**3 if sum==int(a): print('水仙数') 2. lst=[100,2,6,9,1,10,12,35,1,9,65,8,100,0,1,9,5,6]count=0while count<len(lst): for i in range(0, len(lst) - 1): if lst[i] > lst[i + 1]: lst[i ], lst[i+1] = lst[i+1], lst…