#include<stdio.h> int main(){ int x,l,r; scanf("%d %d %d",&x,&l,&r); if(l<=x&&x<=r){ printf("true"); } else{

        printf("false");
    }
}