#abc130a. [abc130_a]Rounding
[abc130_a]Rounding
Problem Statement
and are integers between and (inclusive).
If is less than , print ; if is not less than , print .
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
If is less than , print ; if is not less than , print .
Sample Input 1
3 5
Sample Output 1
0
is less than , so we should print .
Sample Input 2
7 5
Sample Output 2
10
is not less than , so we should print .
Sample Input 3
6 6
Sample Output 3
10
is not less than , so we should print .