using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace YukiCoder { class Program { static bool isKadomatu(int a, int b, int c) { if (a == b || b == c || c == a) return false; if (b > a && b > c) return true; if (b < a && b < c) return true; return false; } static void Main(string[] args) { var va = Console.ReadLine().Split().Select(int.Parse).ToArray(); string sR; int N = 0; if (isKadomatu(va[0], va[1], va[2])) sR = "INF"; else { for (int i = 3; i < va.Max() + 1; i++) { if (isKadomatu(va[0] % i, va[1] % i, va[2] % i)) N++; } sR = N.ToString(); } Console.WriteLine(sR); Console.ReadLine(); } } }