#D2451. AtCoder Crackers
AtCoder Crackers
AtCoder Crackers
Takahashi has decided to distribute N AtCoder Crackers to K users of as evenly as possible. When all the crackers are distributed, find the minimum possible (absolute) difference between the largest number of crackers received by a user and the smallest number received by a user.
Constraints
- 1 \leq N,K \leq 100
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
N K
Output
Print the minimum possible (absolute) difference between the largest number of crackers received by a user and the smallest number received by a user.
Examples
Input
7 3
Output
1
Input
100 10
Output
0
Input
1 1
Output
0
inputFormat
input are integers.
Input
Input is given from Standard Input in the following format:
N K
outputFormat
Output
Print the minimum possible (absolute) difference between the largest number of crackers received by a user and the smallest number received by a user.
Examples
Input
7 3
Output
1
Input
100 10
Output
0
Input
1 1
Output
0
样例
100 10
0