#include #include using namespace std; int main() { double a,b,c,d; a = 2; b = 3; c = 4; d = a + b * c; cout << d << endl; return 0; }