3679.Cows and Primitive Roots

Time Limit: 1s Memory Limit: 256MB

The cows have just learned what a primitive root is! Given a prime p, a primitive root 3679_1.png is an integer x (1 \le x \lt 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 3679_1.png.

Input Format(From the terminal/stdin)

Input The input contains a single line containing an integer p (2 \le p \lt 2000). It is guaranteed that p is a prime.

Output Format(To the terminal/stdout)

Output Output on a single line the number of primitive roots 3679_1.png.

Sample Input 1

Copy
3
 \n

Sample Output 1

Copy
1
 \n

Sample Input 2

Copy
5
 \n

Sample Output 2

Copy
2
 \n

Hints

The only primitive root 3679_2.png is 2.The primitive roots 3679_3.png are 2 and 3.

Submit

请先 登录

© 2025 FAQs