#include<bits/stdc++.h>
using namespace std;
int n;
bool st[10];
int a[10];
void f(int cnt)
{
if(cnt>n)
{
for(int i=1;i<=n;i++)cout<<a[i]<<' ';
puts("");
return;
}
for(int i=1;i<=n;i++)
{
if(!st[i])
{
a[cnt]=i;
st[i]=true;
f(cnt+1);
st[i]=false;
}
}
}
int main()
{
cin>>n;
f(1);
return 0;
}