#include <stdio.h>
#include <math.h>
int main()
{
int i, k;
for(i = 0; i < 6; i++){
k = pow(10, i);
printf("%d\t", k);
}
return 0;