import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main{
    public static void main(String[] args) throws IOException{
        BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
        String str[] = bf.readLine().split(" ");
        int x = Integer.parseInt(str[0]);
        int l = Integer.parseInt(str[1]);
        int r = Integer.parseInt(str[2]);
        if( (x>=l)&&(x<=r)){
            System.out.println("true");
        }else{
            System.out.println("false");
        }
    }
}