/*
403 Forbidden
/*
#include <iostream>
#include <windows.h>
#include <fstream>
using namespace std;
int main()
{
ofstream mbuh;
mbuh.open("manux.txt");
unsigned long int a,b;
cout<<"Input Max Looping = ";
cin>>b;
if (b>=0){
for (a=1; a<=b; a++)
{
mbuh<<"["<<a<<"]"<<"Rieqy Ganteng"<<endl;
}
if (mbuh.is_open()){
cout<<"Success";
}
}
else{
cout<<"Try Again Later :lol \n";
}
mbuh.close();
system ("pause>nul");
return 0;
}