ارسال شماره 978
# bi adab
first = [int(i) for i in input().split()]
second = [int(i) for i in input().split()]
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")