import java.io.*;
class nSequenceNumbers
{
public static void main(String args[] )
throws IOException
{
BufferedReader k=new BufferedReader(new InputStreamReader
(System.in));
String h;
int i,n;
System.out.print("Enter limit : ");
h=k.readLine( );
n=Integer.parseInt(h);
for(i=1;i<=n;i++)
{
System.out.print(i + " ");
}
}
}