#include <stdio.h>
int main() {
int numero = 1;
while (numero <= 9) {
printf("%d\n", numero);
++numero;
++numero;

}
return 0;
}