Ответ:
8. N = int( input() )
Объяснение:
def factorial(K):
PROD = 1
I = 2
while I <= K:
PROD *= I
I += 1
print(PROD)
N=int(input())
factorial(N)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
8. N = int( input() )
Объяснение:
def factorial(K):
PROD = 1
I = 2
while I <= K:
PROD *= I
I += 1
print(PROD)
N=int(input())
factorial(N)