#K88567. Integer Comparison

    ID: 37337 Type: Default 1000ms 256MiB

Integer Comparison

Integer Comparison

You are given two integers. Your task is to determine whether the first integer is greater than the second one. If it is, print \(Yes\); otherwise, print \(No\). The program should read from the standard input (stdin) and output the result to the standard output (stdout).

Example:

Input: 5 3
Output: Yes

Make sure your solution handles various cases including negative numbers.

inputFormat

The input consists of a single line containing two space-separated integers \(a\) and \(b\).

outputFormat

Output a single line containing either "Yes" if \(a > b\) or "No" otherwise.

## sample
5 3
Yes

</p>