public class Solution {
    public static void main(String[] args) {
        //напишите тут ваш код
        int a = 10;
        while (a < 1)
        {
            a--;
System.out.println(a);
        }

    }
}
Почему не срабатывает вывод в консоль System.out.println(a);