Horje
Translation codeforces in c++ Code Example
Translation codeforces in c++
#include<iostream>
using namespace std;

int main()
{
	string s1, s2, s3;
	cin >> s1 >> s2;
	for (int i = s1.length()-1; i >= 0; i--)
	{
		s3 += s1[i];
	}
	if (s3 == s2)
		cout << "YES\n";
	else
		cout << "NO\n";

	return 0;
}




Cpp

Related
ue4 c++ string from fvector Code Example ue4 c++ string from fvector Code Example
difference between --a and a-- c++ Code Example difference between --a and a-- c++ Code Example
What is typedef Code Example What is typedef Code Example
HMC 5883 Example to return x y z values Code Example HMC 5883 Example to return x y z values Code Example
sjfoajf;klsjflasdkfjk;lasjfjajkf;dslafjdjalkkkjakkkkkkkkkkkkkkkkfaWZdfbhjkkkk gauds Code Example sjfoajf;klsjflasdkfjk;lasjfjajkf;dslafjdjalkkkjakkkkkkkkkkkkkkkkfaWZdfbhjkkkk gauds Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12