import math n=int(input())t=0 while n>0:t+=math.factorial(n%10)n//=10 i=1 while math.factorial(i)<t:i+=1 if math.factorial(i)==t:print('yes')else:print('no')
这不是 python 不 python的问题,是先解决 数学伪代码的问题