Test System

Problem Statement

In one of the problems on the site, the condition says: “If the given four-digit number is symmetric, output 1, otherwise output any other integer.” A pupil believes they solved the problem, but the system rejects it. They think it’s because they returned a different “any other number” than the expected one. Write a program that compares the system’s expected output and the student’s answer, and checks if the solution is correct.

Input

The program receives two numbers as input: the system’s answer and the pupil’s answer.

Output

Output "YES" if the pupil’s answer is correct according to the system, otherwise output "NO".

Example

[{'input': '11\n-1', 'output': 'YES'}, {'input': '3\n1', 'output': 'NO'}]