윤년이면 1, 아니면 0 출력
if(year % 4 == 0 && year % 100 != 0 || year % 400 == 0) // 나눴을 때 나머지가 없다면 = 배수라면 System.out.print("1"); else System.out.print("0");