-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path41A_Translation.cpp
More file actions
51 lines (44 loc) · 1.45 KB
/
41A_Translation.cpp
File metadata and controls
51 lines (44 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
A. Translation
time limit per test1 second
memory limit per test256 megabytes
The translation from the Berland language into the Birland language is not an easy task.
Those languages are very similar: a Berlandish word differs from a Birlandish word with the same meaning a little:
it is spelled (and pronounced) reversely. For example, a Berlandish word code corresponds to a Birlandish word edoc.
However, making a mistake during the "translation" is easy. Vasya translated the word s from Berlandish into Birlandish as t.
Help him: find out if he translated the word correctly.
Input
The first line contains word s, the second line contains word t. The words consist of lowercase Latin letters.
The input data do not contain unnecessary spaces. The words are not empty and their lengths do not exceed 100 symbols.
Output
If the word t is a word s, written reversely, print YES, otherwise print NO.
Examples
Input:
code
edoc
Output:
YES
Input:
abb
aba
Output:
NO
Input:
code
code
Output:
NO
*/
#include<bits/stdc++.h>
#include<string>
using namespace std;
int main(){
int i,j;
string s,t,r;
cin>>s>>t;
reverse(s.begin(),s.end());
if(s == t)
cout<<"YES";
else
cout<<"NO";
}