5 3
1
def compare(a, b): if a > b: return 1 elif a == b: return 0 else: return -1 a, b = map(int, input().split()) print(compare(a, b))