x,l,r = map(int,input().split())
if x >= l and x <= r:
    print('true')
else:
    print('false')