#include <iostream>
#include <string>
using namespace std;
int main ()
{
float abc=2;
int c=9;
int x=9;
int zebra=0;
string equality1="Greater than ";
string equality2=" Less than ";
int temp=0;
string Answer="";
cout << "Computer Model D Example" << endl;
cout << "Enter a number between 0 and 100: ";
while (zebra >= 0)
	{
	cin >> zebra;
	if (zebra <0)
		{
		cout << "Signal to Stop" << endl;
		return 0;
		}	
		else 
		{
		temp=zebra-temp;
		temp=temp/x;
		abc=abc*temp;
		if (abc>x+1) Answer=equality1;
		else if (abc=x+1) Answer=" Equal ";
		else Answer=equality2;
		cout << "The Answer is: " << Answer << " " << abc << endl;
		abc = 2;
		temp = 0;
		cout << "Enter a number between 0 and 100: ";
		}
	}
	return 0;
}


