#include <stdio.h>

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