#include int main() { int age = 18; cout << "\nThe value of the first expression is " << (age + 5) << endl; cout << "The value of the second expression is " << (age = 30) << endl; cout << "The value of the third expression is " << (age == 40) << endl; return 0; }