#include <stdio.h>
int main() {
    for(int i = 1; i <= 10; i++) {
        printf("%d ", i\n);
    }
    return 0;
}