initial commit

This commit is contained in:
ShazidMahsrafi 2023-06-16 16:59:58 +06:00
parent c4d95eaf89
commit 15fc07a155

23
41A.cpp Normal file
View File

@ -0,0 +1,23 @@
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
void solve()
{
string s,rs,t;
cin>>s>>t;
reverse(s.begin(),s.end());
if(s==t) cout<<"YES"<<endl;
else cout<<"NO"<<endl;
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int TC = 1;
//cin >> TC;
//cin.ignore();
while (TC--) solve();
}