#include <stdio.h> int main() { int year; scanf("%d",&year); if( year/100 == year%100) printf("YES"); else printf("NO"); return 0; }