ارسال شماره 980

← همه ارسال‌ها

# bi adab
first = [int(i) for i in input().split()]
second = [int(i) for i in input().split()]

boooLeft = -1 if  first[0] * first[1] < 0 else 1
boooRight = -1 if  second[0] * second[1] < 0 else 1


left = first[0] * second[1] * boooLeft
right = second[0] * first[1] * boooRight

if left * right < 0:
    left, right = right, left

if left > right:
    print("First")
elif left < right:
    print("Second")
else:
    print("Equal")