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