def JC(a): b = 1 while(a>0): b*=a a-=1 return b n = int(input()) sum = 0 for i in range(n): c = JC(i+1) sum += c print(sum) 为啥我这个无法编译,在自己的电脑上都行。