#include <stdio.h>

main() 
{
   int x = 0;
	
   while (x < 10) {
      printf("%d ", x);
      x = x + 1;
   }
}