ارسال شماره 968
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.nextInt();
first*=sc.nextInt();
if(first<second){
System.out.println("Second");
} else if (second<first) {
System.out.println("First");
}else {
System.out.println("Equal");
}
}
}