100770: [AtCoder]ABC077 A - Rotation

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $100$ points

Problem Statement

You are given a grid with $2$ rows and $3$ columns of squares. The color of the square at the $i$-th row and $j$-th column is represented by the character $C_{ij}$.

Write a program that prints YES if this grid remains the same when rotated $180$ degrees, and prints NO otherwise.

Constraints

  • $C_{i,j}(1 \leq i \leq 2, 1 \leq j \leq 3)$ is a lowercase English letter.

Input

Input is given from Standard Input in the following format:

$C_{11}C_{12}C_{13}$
$C_{21}C_{22}C_{23}$

Output

Print YES if this grid remains the same when rotated $180$ degrees; print NO otherwise.


Sample Input 1

pot
top

Sample Output 1

YES

This grid remains the same when rotated $180$ degrees.


Sample Input 2

tab
bet

Sample Output 2

NO

This grid does not remain the same when rotated $180$ degrees.


Sample Input 3

eye
eel

Sample Output 3

NO

Input

题意翻译

## 题目描述 给定两个长度为 $3$ 的字符串,如果一个字符串反转后与另一个相等,那么输出 `YES`,否则输出 `NO`。 提示:输出的末尾要输出一个换行符。 ## 输入格式: $C_{1,1},C_{1,2},C_{1,3}$ $C_{2,1},C_{2,2},C_{2,3}$ ## 输出格式: 按要求输出 `YES` 或 `NO`。 ## 数据范围 输入数据中只会出现两个长度为 $3$ 的,由小写字母组成的字符串。 感谢@福州周圣力 提供的翻译

加入题单

算法标签: