팰린드롬 : 회문 또는 팰린드롬은 거꾸로 읽어도 제대로 읽는 것과 같은 문장이나 낱말, 숫자, 문자열 등이다!
reverse 해서 원래 글자와 비교하자
#include <bits/stdc++.h>
using namespace std;
string s, temp;
int main(){
// ios_base::sync_with_stdio(false);
// cin.tie(NULL); cout.tie(NULL);
cin >> s;
temp = s;
reverse(temp.begin(), temp.end());
if(temp == s) cout << 1 << "\n";
else cout << 0 << "\n";
return 0;
}