101300: [AtCoder]ABC130 A - Rounding

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

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:

$X$ $A$

Output

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


Sample Input 1

3 5

Sample Output 1

0

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


Sample Input 2

7 5

Sample Output 2

10

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


Sample Input 3

6 6

Sample Output 3

10

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

Input

题意翻译

## 输入格式 输入共一行,两个整数 $a,b$ 。 ## 输出格式 输出共一行,如果 $a<b$ ,则输出 $0$ ,否则输出 $10$。 输出完后记得换行! 翻译由 @[Jasoncwx](/user/592684) 整理

加入题单

算法标签: