#include using namespace std; using uint = unsigned int; using ll = long long; using ull = unsigned long long; template using V = vector; template using VV = V>; template using VVV = V>; template using VVVV = VV>; #define rep(i,n) for(ll i=0ll;i void chmin(T& t, const U& u) { if (t > u) t = u; } template void chmax(T& t, const U& u) { if (t < u) t = u; } // cin.tie(nullptr); // ios::sync_with_stdio(false); // cout << fixed << setprecision(20); void solve(){ ll a,b,c; cin >> a >> b >> c; ll cnt = 0; REP(i,1,3000){ ll x=a%i, y=b%i, z =c%i; if((y-z)*(y-x)>0 && x!=z) cnt++; } if(cnt>1000) cout << "INF" << endl; else cout << cnt << endl; } int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int t=1; // cin >> t; rep(i,t) solve(); }