#include
#include
#include
using namespace std;
int main(int argc, char *argv[])
{
int x[10];
srand(time(0));
for(int i=0; i<10; ++i) <br> x[i]=-rand()%8+5;
long r=(x[0]+2*x[1]+x[2]);
for(int i=2; i<9; ++i)<br> r*=(x[i-1]+2*x[i]+x[i+1]);
cout <<r<<endl;<br> system("pause");
return EXIT_SUCCESS;
}