100 atcoder#ABC130A. [ABC130A] Rounding
[ABC130A] Rounding
Score : points
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 .
3 5
0
is less than , so we should print .
7 5
10
is not less than , so we should print .
6 6
10
is not less than , so we should print .