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