// Page 083 class Prog_6_10m { public static void main(String[] args) { for ( int count = 10; count >= 0; count -- ) System.out.println(count); } }