I wrote this programme but what two numbers you choose exit it?
can you guess just by looking? Because I can't :(
#include <iostream>
#include <string>
using namespace std;
int main()
{
bool aHo = true;
int a = 0;
int b = 0;
while(aHo)
{
cout << "Enter Number one: ";
cin >> a;
cout << endl;
cout << "Enter NUmber two: ";
cin >> b;
cout << endl;
for (int i = 0; i< 2; i++)
for (int j = 0; j < 2; j++)
for (int z = 0; z < 2; z++)
for (int v = 0; v < 2; v++)
cout << a++ << " " << ++b << " " << ++a << " " << b++ << endl;
a++;
if (a == 30 && b == 34)
aHo = false;
}
system("PAUSE");
}