#include #include int main(void){ int S[20]; scanf("%s",S); if(strlen(S) % 2) printf("No\n"); else printf("Yes\n"); return 0; }