using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.Write("请输入一个年份: ");
string str = Console.ReadLine();
int year = Convert.ToInt32(str);
int year1 = int.Parse(str);
bool isleapyear = ((year1 % 400) == 0) || (((year1 % 4) == 0) && ((year1 % 100) != 0));
string yesno = isleapyear?"是":"不是";
Console.WriteLine("{0}年{1}闰年", year1, yesno);
Console.ReadLine();
}
}
}