#P1027G. X-mouse in the Campus

    ID: 4345 Type: RemoteJudge 1000ms 256MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>bitmasksmathnumber theory*2600

X-mouse in the Campus

No submission language available for this problem.

Description

The campus has mm rooms numbered from 00 to m1m - 1. Also the xx-mouse lives in the campus. The xx-mouse is not just a mouse: each second xx-mouse moves from room ii to the room ixmod  mi \cdot x \mod{m} (in fact, it teleports from one room to another since it doesn't visit any intermediate room). Starting position of the xx-mouse is unknown.

You are responsible to catch the xx-mouse in the campus, so you are guessing about minimum possible number of traps (one trap in one room) you need to place. You are sure that if the xx-mouse enters a trapped room, it immediately gets caught.

And the only observation you made is GCD(x,m)=1\text{GCD} (x, m) = 1.

The only line contains two integers mm and xx (2m10142 \le m \le 10^{14}, 1x<m1 \le x < m, GCD(x,m)=1\text{GCD} (x, m) = 1) — the number of rooms and the parameter of xx-mouse.

Print the only integer — minimum number of traps you need to install to catch the xx-mouse.

Input

The only line contains two integers mm and xx (2m10142 \le m \le 10^{14}, 1x<m1 \le x < m, GCD(x,m)=1\text{GCD} (x, m) = 1) — the number of rooms and the parameter of xx-mouse.

Output

Print the only integer — minimum number of traps you need to install to catch the xx-mouse.

Samples

Sample Input 1

4 3

Sample Output 1

3

Sample Input 2

5 2

Sample Output 2

2

Note

In the first example you can, for example, put traps in rooms 00, 22, 33. If the xx-mouse starts in one of this rooms it will be caught immediately. If xx-mouse starts in the 11-st rooms then it will move to the room 33, where it will be caught.

In the second example you can put one trap in room 00 and one trap in any other room since xx-mouse will visit all rooms 1..m11..m-1 if it will start in any of these rooms.