#include <iostream>
using namespace std;

int main()
{
  for (int j = 1; j <= 10; ++j)
  {
    cout<<j<<" ";
  }
  cout<<endl;
}
