#include <stdio.h>

int main(void) {
	int a=10;
	
	do{
		printf("%d\n",a);
		a=a-1;
	}while(a>=1);
	
	return 0;
}
