public class CountDown { public static void main(String[] args) { for (int count = 10; count >= 1; count--) { System.out.println(count); } } }