ارسال شماره 981
# bi adab
first = [int(i) for i in input().split()]
second = [int(i) for i in input().split()]
boooLeft = -1 if first[0] < 0 and first[1] < 0 else 1
boooRight = -1 if second[0] < 0 and second[1] < 0 else 1
first = [i * boooLeft for i in first]
second = [i * boooRight for i in second]
left = first[0] * second[1]
right = second[0] * first[1]
if left * right < 0:
left, right = right, left
if left > right:
print("First")
elif left < right:
print("Second")
else:
print("Equal")