using System; class Program { static void Main(string[] args) { var N = int.Parse(Console.ReadLine()); var count = 0; for (int T = 0; T < N / 5 + 1; T++) { for (int PG = 0; PG < N / 3 + 1; PG++) { for (int C = 0; C < T + 1; C++) { if (C > T) break; if (5 * T + 3 * PG + 2 * C == N) { count++; break; } } } } Console.WriteLine(count); } }