#include<iostream.h>
//This program prints from 1 to 10
int main()
{
for(int i=1;i<=10;i++)
cout<<i<<endl;
return 0;
}