A - Rounding 解説 /

実行時間制限: 2 sec / メモリ制限: 1024 MB

配点 : 100

問題文

X, A0 以上 9 以下の整数です。

XA 未満の時 0A 以上の時 10 を出力してください。

制約

  • 0 \leq X, A \leq 9
  • 入力は全て整数である

入力

入力は以下の形式で標準入力から与えられる。

X A

出力

XA 未満の時 0A 以上の時 10 を出力せよ。


入力例 1

3 5

出力例 1

0

35 未満であるので、0 を出力してください。


入力例 2

7 5

出力例 2

10

75 以上であるので、10 を出力してください。


入力例 3

6 6

出力例 3

10

66 以上であるので、10 を出力してください。

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.