#AT1361. A - Rounding

A - Rounding

A - Rounding

Score : $100$ points

Problem Statement

$X$ and $A$ are integers between $0$ and $9$ (inclusive).

If $X$ is less than $A$, print $0$; if $X$ is not less than $A$, print $10$.

Constraints

  • $0 \leq X, A \leq 9$
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

XX AA

Output

If $X$ is less than $A$, print $0$; if $X$ is not less than $A$, print $10$.


3 5
0

$3$ is less than $5$, so we should print $0$.


7 5
10

$7$ is not less than $5$, so we should print $10$.


6 6
10

$6$ is not less than $6$, so we should print $10$.