Hide
Problem B
Which is Greater?
Given two positive integers, determine whether the first one is larger than the second one.
Input
The single line of input contains two positive integers, $a$ and $b$ ($0 < a,b \le 10^9$).
Output
Output a single line with 1 if $a > b$, 0 otherwise.
Sample Input 1 | Sample Output 1 |
---|---|
1 19 |
0 |
Sample Input 2 | Sample Output 2 |
---|---|
4 4 |
0 |
Sample Input 3 | Sample Output 3 |
---|---|
23 14 |
1 |