// Program Pres demonstrates the precedence of operators #include using namespace std; int main () { cout << 4 + 3 * 5 << endl; cout << (4 + 3) * 5 << endl; cout << 4 * 5 % 3 + 2 << endl; cout << (4 * (5 / 3) + 2) << endl; return 0; }