Loading environment...
In many cryptographic applications, the Modular Inverse is a key point. This question involves finding the modular inverse of a number.
Given , where and are integers, the modular inverse of is the unique integer , , such that the remainder upon dividing by is .
For example, , so the remainder when is divided by is , and thus is the inverse of modulo .
You are to write a program which accepts as input the two integers and , and outputs either the modular inverse , or the statement No such integer exists. if there is no such integer .