#54017: C++


nalwulol (myusernameisthis)


#include <iostream>
#include <string>
using namespace std;

int main() {
    string s;
    cin >> s;  // 讀入字串
    string rev = string(s.rbegin(), s.rend());  // 反轉字串
    if (s == rev)
        cout << "yes" << endl;
    else
        cout << "no" << endl;
    return 0;
}