# -*- coding: utf-8 -*- import math a = int(input()) b = int(input()) c = int(input()) standerd = math.ceil(a / b) event = math.ceil(a / c) if event <= standerd * 2 / 3: print('OK') else: print('NO')