1#include <bits/stdc++.h>2 3using namespace std;4 5int main()6{7 char a,b,c;8 cin>>a>>b>>c;9 if(a==c) {10 cout<<"Yes";11 }12 else13 cout<<"No";14}