#include <iostream>
using namespace std;
int main() {
float x,y;
cout << "Type the charges of the two cab services: ";
cin >> x >> y;
if((x >= 1) & (y >= 1) & (x <= 100) & (y <= 100)) {
if(x < y) {
cout << "FIRST";
//break;
}
else if(x == y) {
cout << "ANY";
//break;
}
else if(x > y) {
cout << "SECOND";
//break;
}
}
return 0;
}