// Program precedence demonstrates the precedence of operators.

// Begin with preprocessor directives and using statements

#include <iostream>
using namespace std;

// Define the global function main()

int main()
{
	cout.setf(ios::fixed, ios::floatfield);
	cout.setf(ios::showpoint);
	
	cout << 4 + 3 * 5 << endl;
	cout << (4 + 3) * 5 << endl;
	cout << 4 * 5 % 3 + 2 << endl;
	cout << (4 * (5 / 3) + 2) << endl;
	
	return 0;
}

