using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
}
//defines a function called leap year and pareses the integer year
public static string LeapYear(int year)
//if the year goes into 4 and doesnt go into 100 and goes into 400 returns it is a leap year
if((year % 4 == 0) && (year % 100 != 0) || (year % 400 == 0))
return "it is a leap year";
// if the above conditions are not met it will return not a leap year
return "it is not a leap year";