#include int main(void) { char str[3]; scanf("%s", str); if (str[0] == str[1]) { printf("Yes"); } else { printf("No"); } return 0; }