Problem10707--ABC130 —— A - Rounding

10707: ABC130 —— A - Rounding

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 512 MiB

Description

$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$.

Input

Input is given from Standard Input in the following format:

```
$X$ $A$
```

Output

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.

Sample 1 Input

3 5

Sample 1 Output

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

Sample 2 Input

7 5

Sample 2 Output

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

Sample 3 Input

6 6

Sample 3 Output

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

Source/Category