1977.Taymyr is calling you

Time Limit: 1s Memory Limit: 256MB

Comrade Dujikov is busy choosing artists for Timofey's birthday and is recieving calls from Taymyr from Ilia-alpinist.

Ilia-alpinist calls every n minutes, i.e. in minutes n, 2n, 3n and so on. Artists come to the comrade every m minutes, i.e. in minutes m, 2m, 3m and so on. The day is z minutes long, i.e. the day consists of minutes 1,2,...,z. How many artists should be killed so that there are no artists in the room when Ilia calls? Consider that a call and a talk with an artist take exactly one minute.

Input Format(From the terminal/stdin)

The only string contains three integers- n, m and z (1 \le n,m,z \le 104).

Output Format(To the terminal/stdout)

Print single integer- the minimum number of artists that should be killed so that there are no artists in the room when Ilia calls.

Sample Input 1

Copy
1 1 10
 · ·  \n

Sample Output 1

Copy
10
  \n

Sample Input 2

Copy
1 2 5
 · · \n

Sample Output 2

Copy
2
 \n

Sample Input 3

Copy
2 3 9
 · · \n

Sample Output 3

Copy
1
 \n

Hints

Taymyr is a place in the north of Russia.

In the first test the artists come each minute, as well as the calls, so we need to kill all of them.

In the second test we need to kill artists which come on the second and the fourth minutes.

In the third test- only the artist which comes on the sixth minute.

Submit

请先 登录

© 2025 FAQs