#python3题解#

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