#include<bits/stdc++.h>
using namespace std;
int main(){
int i=1;
for( ; ; ){
cout<<i<<" ";
i++;
if(i>10)break;
}
return 0;