Wyo C++ Ch. 5 Worksheet #4 Name -
// Computer Science Using C++						
// Ch. 5 Worksheet #4


// Circle & identify as many operators as you can find in the code below. Be as explanatory
// as possible by giving the "official", technical name for each operator that you can identify.
// DO NOT circle symbols or keywords that are not formally considered to be C++ operators.

#include <iostream.h>

int main()
{
	int myInt = 0;
	int total;
	
	total = -1;

	myInt += total;

	cin >> total;

	cout << myInt << endl;

	return 0;
}// end of main