using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace pj1 { class Program { static void Main(string[] args) { int year = int.Parse(Console.ReadLine()); if (year % 4 == 0) { if(year % 400 == 0) { Console.Write("Yes"); } else { if (year % 100 == 0) { Console.Write("No"); } else { Console.Write("Yes"); } } } else { Console.Write("No"); } } } }