/* Helloプログラム */

#include <stdio.h>
 
main()
{
	int count ;

	count = 1;
	while (count <= 10) {
		printf("%d\n", count);
		count ++;
	}
		
}