when i'm trying to validate my code i get error message the fourth condition is not meet. Here my code: import java.util.*; public class Solution { public static void main(String[] args) throws Exception { //write your code here Scanner read = new Scanner(System.in); int year; year = read.nextInt(); if((year%400)==0 && (year%100)==0){ System.out.println("Number of days in the year: "+366); } else if((year%4)==0){ System.out.println("Number of days in the year: "+366); } else if ((year%100)== 0 && (year%400)!=0){ System.out.println("Number of days in the year: "+365); } else { System.out.println("Number of days in the year: "+365); } } }