// Constant propagation should help here...

void print_int(int i) { }

void main(void) {
  int i,j,k;
  int bound;
  int c, d, e, f;
  int sum, sum1, sum2, sum3, sum4, sum5, sum6, sum7;

  c = 5;
  d = 18;  
  e = 11;
  f = -2;
 
  sum = 0;  
  bound = 900;

  for(i = 0; i < bound; i += 1){
		for(j = 0; j < bound; j += 1){
			for(k = 0; k < bound; k += 1){ 
		sum1 = c + d;  
  	  	sum2 = d - sum1;
    		sum3 = c * sum2;
    		sum4 = e + sum3;
	    	sum5 = sum4 * f;
  	  	sum6 = sum3 + sum5;
    		sum7 = sum6 + 3;
    		sum += sum7 + sum3;
			}
  	}
  }

  print_int(sum);
  return;
}

