#include <cstdio>
using namespace std;
int main(){
int x;
while(scanf("%d",&x)!=EOF){
if(x!=0){
for(int i=1;i<=x;i++){
printf("%d ",i);
}
printf("\n");
}
}
return 0;
}