CF284A.Cows and Primitive Roots
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
The cows have just learned what a primitive root is! Given a prime p , a primitive root is an integer x (1<=x<p) such that none of integers x−1,x2−1,...,xp−2−1 are divisible by p , but xp−1−1 is.
Unfortunately, computing primitive roots can be time consuming, so the cows need your help. Given a prime p , help the cows find the number of primitive roots .
输入格式
The input contains a single line containing an integer p (2<=p<2000) . It is guaranteed that p is a prime.
输出格式
Output on a single line the number of primitive roots .
输入输出样例
输入#1
3
输出#1
1
输入#2
5
输出#2
2
说明/提示
The only primitive root is 2.
The primitive roots are 2 and 3.