3754: Cows and Primitive Roots
金币值:2
定数:1
时间限制:2.000 s
内存限制:256 M
正确:0
提交:0
正确率:0.00% 命题人:
题目描述
time limit per test
2 secondsmemory limit per test
256 megabytesinput
standard inputoutput
standard outputThe 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
.
Input
The input contains a single line containing an integer p (2≤p<2000). It is guaranteed that p is a prime.
Output
Output on a single line the number of primitive roots
.
Examples
Input
3
Output
1
Input
5
Output
2
Note
The only primitive root
is 2.
The primitive roots
are 2 and 3.