#include <stdio.h>

int main(void) {
		
	for(float x = 100000001.0f; x <= 100000010.0f; x += 1.0f) {
		printf("%f\n", x);
}
	// your code goes here
	return 0;
}
