#include <stdio.h>
int main(){
int c = 0;
char a = 'a';
if(a >= 0 && a <= 255)
printf("yes\n");
else
printf("no\n");
return 0;
}