시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 128 MB13311010083.333%

문제

In many cryptographic applications, the Modular Inverse is a key point. This question involves finding the modular inverse of a number.

Given $0 < x < m$, where $x$ and $m$ are integers, the modular inverse of $x$ is the unique integer $n$, $0 < n < m$, such that the remainder upon dividing $x \times n$ by $m$ is $1$.

For example, $4 \times 13 = 52 = 17 \times 3 + 1$, so the remainder when $52$ is divided by $17$ is $1$, and thus $13$ is the inverse of $4$ modulo $17$.

You are to write a program which accepts as input the two integers $x$ and $m$, and outputs either the modular inverse $n$, or the statement No such integer exists. if there is no such integer $n$.

제한

  • $m \le 100$

예제 입력 1

4
17

예제 출력 1

13

예제 입력 2

6
10

예제 출력 2

No such integer exists.