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