问题1823--Relatives

1823: Relatives

[命题人 : 外部导入]
时间限制 : 1.000 sec  内存限制 : 64 MB

题目描述

Given n, a positive integer, how many positive integers less than n are relatively prime to n? Two integers a and b are relatively prime if there are no integers x > 1, y > 0, z > 0 such that a = xy and b = xz.

输入

There are several test cases. For each test case, standard input contains a line with n <= 1,000,000,000. A line containing 0 follows the last case.

输出

For each test case there should be single line of output answering the question posed above.

样例输入 Copy

7
12
0

样例输出 Copy

6
4

来源/分类