깃 링크 : 바로가기링크 : 바로가기 1차 시도public class num_2753{ public static void Main() { int year = Convert.ToInt32(Console.ReadLine()); int result_4 = year % 4; int result_100 = year % 100; int result_400 = year % 400; if (result_4 == 0 && (result_100 != 0 || result_400 == 0)) { Console.WriteLine("1"); } else { Conso..