Hide
Problem A
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,
Output
Output a single line with 1 if
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 |