using System;
public class Program
{
public static void Main()
Console.WriteLine("Który rok chcesz sprawdzić?");
int rok = int.Parse(Console.ReadLine());
if (rok % 4 == 0 && rok % 100 != 0)
Console.WriteLine("Ten rok jest przestępny");
}
else
Console.WriteLine("Ten rok NIE jest przestępny");