#include using std::cout; using std::endl; int main() { int x, y; x = 30; y = 2; cout << x * y + 9 / 3 << endl; return 0; //end }