#abc165a. [abc165_a]We Love Golf
[abc165_a]We Love Golf
Problem Statement
Takahashi the Jumbo will practice golf.
His objective is to get a carry distance that is a multiple of , while he can only make a carry distance of between and (inclusive).
If he can achieve the objective, print OK
; if he cannot, print NG
.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
If he can achieve the objective, print OK
; if he cannot, print NG
.
Sample Input 1
7
500 600
Sample Output 1
OK
Among the multiples of , for example, lies between and .
Sample Input 2
4
5 7
Sample Output 2
NG
No multiple of lies between and .
Sample Input 3
1
11 11
Sample Output 3
OK