using System;
public class Program
{
public static void Main()
int year = int.Parse(Math.Floor((new DateTime(2019, 01, 01) - new DateTime(2018, 01, 01)).TotalDays / 365.25).ToString()) + 1;
Console.WriteLine(year);
}