using namespace std; #include int main(){ string S; cin >> S; if(S[0] == S[1]){ cout << "Yes" << endl; }else{ cout << "No" << endl; } }