DMPG '18 B2 - Mimi and Modulus

View as PDF

Submit solution


Points: 3 (partial)
Time limit: 1.0s
Memory limit: 64M

Author:
Problem type

The modulo operator is a very commonly used operation in computer science. The result of taking A modulo B is equal to the remainder of A when divided by B.

For her ICS homework, Mimi was asked to find the greatest result of A mod M for all integers A in the range 1,2,,N. Can you help Mimi do her homework?

Constraints

Subtask 1 [40%]

1N,M105

Subtask 2 [60%]

1N,M109

Input Specification

The first and only line of input will contain two space separated integers, N and M.

Output Specification

The greatest result of A mod M for all integers A in the range 1,2,,N.

Sample Input

Copy
5 3

Sample Output

Copy
2

Comments

There are no comments at the moment.