Rotation

AtCoder
IDabc077_a
Time2000ms
Memory256MB
Difficulty
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}$ [samples]
Samples
Input #1
pot
top
Output #1
YES

This grid remains the same when rotated $180$ degrees.
Input #2
tab
bet
Output #2
NO

This grid does not remain the same when rotated $180$ degrees.
Input #3
eye
eel
Output #3
NO
API Response (JSON)
{
  "problem": {
    "name": "Rotation",
    "description": {
      "content": "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`",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc077_a"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "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}$.\nWrite a program that prints `YES`...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments