import math
def coonter(n):
n = abs(n)
count = 1
n //= 10
while n > 0:
n //= 10
count += 1
print(count)
while True:
x = int(input("Введите число для вычисления факториала: "))
fc = math.factorial(x)
print(" Факториал числа",x, "равен",fc, "цифр в числе - ", coonter(fc))