码迷,mamicode.com
首页 > 其他好文 > 详细

A - Translation

时间:2018-06-05 21:20:11      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:put   case   first   let   pre   namespace   spell   相等   size   

Problem description

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, it‘s easy to make a mistake during the ?translation?. Vasya translated 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 consist 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
解题思路:检查第一个字符串反转之后是否和第二个字符串相等,是为"YES",否则为"NO"。
AC代码:
 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 int main(){
 4     string s,t;
 5     cin>>s>>t;
 6     reverse(s.begin(),s.end());
 7     if(t==s)cout<<"YES"<<endl;
 8     else cout<<"NO"<<endl;
 9     return 0;
10 }

 

A - Translation

标签:put   case   first   let   pre   namespace   spell   相等   size   

原文地址:https://www.cnblogs.com/acgoto/p/9141475.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!