Write a program that, given two intervals, tells if one is inside the other.
Input consists of four integer numbers , , , that represent the intervals and . Assume and .
Print ‘=’ if the intervals are equal, ‘1’
if the first is inside the second (but they are not equal),
‘2’ if the second is inside the first (but they are not
equal), or ‘?’ otherwise.
Input
20 30 10 40
Output
1
Input
10 20 10 20
Output
=
Input
20 30 10 20
Output
?
Input
10 20 30 40
Output
?