0019: Factorial

 

 

階乗

問題ページ

解き方

mathモジュールのfactorialを使う。

コード(python)

import math
print(math.factorial(int(input())))