--------------------------------------------
#include
#include
using namespace std;
int main()
{
ofstream outfile("File");
int a=0, b=0;
loop:
if (a==256)
{
outfile.close();
return 0;
}
if (b==256)
{
b=0;
a=a+1;
goto loop;
}
else
{
outfile.put(a);
outfile.put(b);
b=b+1;
goto loop;
}
}