#abc130a. [abc130_a]Rounding

[abc130_a]Rounding

Problem Statement

XX and AA are integers between 00 and 99 (inclusive).

If XX is less than AA, print 00; if XX is not less than AA, print 1010.

Constraints

  • 0leqX,Aleq90 \\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 XX is less than AA, print 00; if XX is not less than AA, print 1010.


Sample Input 1

3 5

Sample Output 1

0

33 is less than 55, so we should print 00.


Sample Input 2

7 5

Sample Output 2

10

77 is not less than 55, so we should print 1010.


Sample Input 3

6 6

Sample Output 3

10

66 is not less than 66, so we should print 1010.