/* Helloプログラム */

#include <stdio.h>
 
main()
{
	int count ;
	
	count = 1;
	while (count <= 10) {
	  printf("%d\n", 11 - count);
	  count ++;
	}
	
}