public class Date221107_1{ public static void main(String[] args){ int a = 0; while(a<=10){ a++; if(a%2 == 0){ System.out.println(a); } } } }