import math
fact = lambda f: int(round(math.exp(sum([math.log(a) for a in range(1,f+1)]))))
print fact(6)