返回列表 發帖
def compute(n):
    s=1
    for i in range(1,n+1):
         s=s*i
    return s
n=int(input())
t=compute(n)
print(f"{n}!={t}")

TOP

返回列表