#D7727. Lexicographical Comparison
Lexicographical Comparison
Lexicographical Comparison
Compare given two sequence and B = \\{b_0, b_1, ..., b_{m-1} lexicographically.
Constraints
Input
The input is given in the following format.
The number of elements in and its elements are given in the first and second lines respectively. The number of elements in and its elements are given in the third and fourth lines respectively. All input are given in integers.
Output
Print 1 is greater than , otherwise 0.
Examples
Input
3 1 2 3 2 2 4
Output
1
Input
4 5 4 7 0 5 1 2 3 4 5
Output
0
Input
3 1 1 2 4 1 1 2 2
Output
1
inputFormat
Input
The input is given in the following format.
The number of elements in and its elements are given in the first and second lines respectively. The number of elements in and its elements are given in the third and fourth lines respectively. All input are given in integers.
outputFormat
Output
Print 1 is greater than , otherwise 0.
Examples
Input
3 1 2 3 2 2 4
Output
1
Input
4 5 4 7 0 5 1 2 3 4 5
Output
0
Input
3 1 1 2 4 1 1 2 2
Output
1
样例
3
1 1 2
4
1 1 2 2
1