ارسال شماره 969
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
long first = sc.nextLong();
long second = sc.nextLong();
second*=sc.nextLong();
first*=sc.nextLong();
if(first<second){
System.out.println("Second");
} else if (second<first) {
System.out.println("First");
}else {
System.out.println("Equal");
}
}
}