100 atcoder#ABC130A. [ABC130A] Rounding

[ABC130A] Rounding

Score : 100100 points

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

  • 0X,A90 \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.

3 5
0

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

7 5
10

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

6 6
10

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