#include <iostream>
int main()
{
    int x=0;
    while(x!=12773)
        {
        x++;
        std::cout<<x<<'\n';
        }
    return 0;
}