// Example of arithmetic operations #include using namespace std; int main() { int x = 5, count = 7, result; result = x * (count++); cout << "count = " << count << '\n'; cout << "result = " << result << '\n'; }