using System;
public class Program
{
public static void Main()
int any;
//introduïm variables
Console.WriteLine("Escriu un any");
any=int.Parse(Console.ReadLine());
//introduïm l'any a la variable any
if(any%4==0){
Console.WriteLine("El teu any es 'bisiesto'");
//Cada 4 anys hi ha un any bisiesto, per tant si el residu entre l'any i 4 és zero serà bisiesto
}else
Console.WriteLine("El teu any no és 'bisiesto'");
//Si el residu no és zero no serà bisiesto
}