﻿from math import *
def fact_C13(n):
  u=1
  for i in range(0,n):
    u=(i+1)*u
  return u
