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