#include <stdio.h>

int main() {
  char c = 127;
  c<<=1;
  if(c == (char)0xfe) {
    printf("yes");
  }else{
    printf("No");
  }
  return 0;
}