/*										Author:	John Howell			Drawer 76
	Program name:   more_math.cpp
	Purpose:        To show variable declaration
					To "set up" for showing the assignment operator.
*/

#include <iostream.h>
using namespace std;
int main ( )
{
	double  first, second, result;

	cout << "This program can will ask for two integers.\n" ;
	cout << "Enter the first integer: ";
	cin  >> first;
	cout << "Enter the other integer: ";
	cin  >> second;
	
	cout << "You entered "  <<  first  <<  " and "  <<  second  << endl ;
	
	result = first /second;

	cout << first <<" / " << second << " is " << result<<endl;
        
	return 0;
	
	// change to -;  then *;  then /
}

