public class Solution { public static void main(String[] args) { for (int x = 15; x >= 1; x--) { if (x % 2 == 0) { System.out.println(x); } } } }