#include<iostream>
using namespace std;
int main()
{
    int i=1,n;
    cout<<"\nEnter The Limit:";
    cin>>n;
    start:
            cout<<"\nGoto";
    i++;
    if(i<=n)
    {
        goto start;
    }
    return 0;
}
