3226.Translation

Time Limit: 1s Memory Limit: 256MB

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 Format(From the terminal/stdin)

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 Format(To the terminal/stdout)

If the word t is a word s, written reversely, print YES, otherwise print NO.

Sample Input 1

Copy
code
edoc
    \n
    \n

Sample Output 1

Copy
YES
   \n

Sample Input 2

Copy
abb
aba
   \n
   \n

Sample Output 2

Copy
NO
  \n

Sample Input 3

Copy
code
code
    \n
    \n

Sample Output 3

Copy
NO
  \n

Submit

请先 登录

© 2025 FAQs