using System;
public class Program
{
public static void Main()
static void NumberOfYears(int a, int b)
int k = (b-a)/4;
Console.WriteLine(k);
}