#B2620. Integer Relation Checker

    ID: 11259 Type: Default 1000ms 256MiB

Integer Relation Checker

Integer Relation Checker

Given two integers \(a\) and \(b\) (where \(|a|, |b| \leq 10000\)), determine the following:

  • Is \(a > b\)?
  • Is \(a \leq b\)?
  • Is \(a \neq b\)?

For each question, output "Yes" if the condition is true, otherwise output "No". Each answer should be printed on a separate line in the order given above.

inputFormat

The input consists of two integers \(a\) and \(b\) separated by space or newline. Both integers satisfy \(|a|, |b| \leq 10000\).

outputFormat

The output should contain three lines. Each line corresponds to the answer of a condition in the following order:

  1. Output "Yes" if \(a > b\), otherwise "No".
  2. Output "Yes" if \(a \leq b\), otherwise "No".
  3. Output "Yes" if \(a \neq b\), otherwise "No".

sample

3 4
No

Yes Yes

</p>