#include <iostream.h>  // Input and output definitions

/*            
hello
 */

void main()
{ int a,b,c,d;

  a=10;
  b=7; c=7; d=2;

  cout << "the answer is " <<  (a + b) * c / d << endl;
}

