#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(){
__int64 i, j, k;
__int64 a, b, M;
while(scanf("%I64d%I64d%I64d", &a, &b, &M) != EOF){
if (a > b){
k = a;
a = b;
b = k;
}
if (b == 1){
k = M;
}else{
k = 0;
j = 1;
for (i = b; M / i > 0; i = i * b){
k += j * M / i;
j = -j;
}
}
printf("%I64d\n", k);
}
system("pause");
return 0;
}
/***************
结论是猜的,开始题目还看错了。。。
暴力的又连番写错。。。好久俩程序才对上。。。
其实这结论,稍分析,再猜一猜,还是容易猜到的,连我这个没啥找规律细胞的
,都能找到。。。表示自己很惊奇。。。
M/b是上界,当m1*a=m2*b时,又可以省M/ab个,但其中有些是不能省的,再加上
M/ab - M/bb,表达不清楚。。反正类似这样的情况,加加减减的。。。我也没搞
清楚。。。
***************/
Problem Description
Lucy and Lily are twin sisters. Mr. Smith, their father, a mathematician, gave each of them a lucky number (positive integer) when they were born, and the two lucky numbers have only one common divisor, of course, it is 1.
Mr. Smith is extremely excited to see that his two little children are so interested in math and both of them show amazing talent. Mr. Smith now will teach the two little girls to do multiplication. He wants to start with the two lucky numbers a and b.
Mr. Smith will write a set of positive integers (we call it SetA) such that for any positive integer m, we can find m*a or m*b in SetA. Because Lucy and Lily can only count from 1 to M, so if m*a or m*b is larger than M, Mr. Smith will ignore m.
Mr. Smith wants to write least numbers.
So help him to figure out the minimum number of elements in SetA.
For example the lucky numbers are 3 and 2, and M is 7.
Mr. Smith could write 3,6,2,4. He could also write only 3,6,4 or 3,6 or 2,4. But in no way could he write only one number contain both (1*3 or 1*2) and (2*3 or 2*2).
Input
The input has multiple cases, process to EOF. There are about 10000 cases.
Each case contains a line with 3 positive integers: a b M as described above.
We ensure the greatest common divisor of a and b is 1.
M, a, b are all fit 32bit integers.
Output
For each test case, output a line with only one integer, the minimum number of elements in SetA.
Sample Input
3 2 7
4 3 8
Sample Output
2
2