#include using namespace std; bool isKadomatsu(int a,int b,int c){ if(a == c)return false; if(a>b && bc)return true; return false; } int main() { int A,B,C; cin >> A >> B >> C; if(isKadomatsu(A,B,C)){ cout << "INF" <