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