class Main { public static void main(String[] args) { int i =100 ; while(i>=0){ if(i%4==0){ System.out.println(i); } i--; } } }