CF822A.I'm bored with life
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Holidays have finished. Thanks to the help of the hacker Leha, Noora managed to enter the university of her dreams which is located in a town Pavlopolis. It's well known that universities provide students with dormitory for the period of university studies. Consequently Noora had to leave Vičkopolis and move to Pavlopolis. Thus Leha was left completely alone in a quiet town Vičkopolis. He almost even fell into a depression from boredom!
Leha came up with a task for himself to relax a little. He chooses two integers A and B and then calculates the greatest common divisor of integers " A factorial" and " B factorial". Formally the hacker wants to find out GCD (A!,B!) . It's well known that the factorial of an integer x is a product of all positive integers less than or equal to x . Thus x!=1⋅2⋅3⋅...⋅(x−1)⋅x . For example 4!=1⋅2⋅3⋅4=24 . Recall that GCD (x,y) is the largest positive integer q that divides (without a remainder) both x and y .
Leha has learned how to solve this task very effective. You are able to cope with it not worse, aren't you?
输入格式
The first and single line contains two integers A and B (1<=A,B<=109,min(A,B)<=12) .
输出格式
Print a single integer denoting the greatest common divisor of integers A! and B! .
输入输出样例
输入#1
4 3
输出#1
6
说明/提示
Consider the sample.
4!=1⋅2⋅3⋅4=24 . 3!=1⋅2⋅3=6 . The greatest common divisor of integers 24 and 6 is exactly 6 .