Coprimes

Coprimes
Time Limit:250MS     Memory Limit:4096KB     64bit IO Format:%I64d & %I64u

Description

For given integer N (1<=N<=104) find amount of positive numbers not greater than N that coprime with N. Let us call two positive integers (say, A and B, for example) coprime if (and only if) their greatest common divisor is 1. (i.e. A and B are coprime iff gcd(A,B) = 1).

Input

Input file contains integer N.

Output

Write answer in output file.

Sample Input

9

Sample Output

6



#include
#include 
using namespace std;
int gcd(int a,int b)
{
     return b==0?a:gcd(b,a%b);
}
int main()
{
	int n;
	while(scanf("%d",&n)!=EOF){
		int ans=0;
		for(int i=0;i
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章