using System;
public class Program
{
public static void Main()
double year_modulo, year, R;
Console.WriteLine("Escriba año");
year= Convert.ToDouble(Console.ReadLine());
R= (year/4);
year_modulo= Math.Truncate(R);
if ( R == year_modulo)
Console.WriteLine("El año es bisiesto");
}
else
Console.WriteLine("El año no es bisiesto");