#include <math.h>
int main()
{
    double x = 1.5;
    double y = pow(x, 6) * 235809835.41 - pow(x, 5) * 2110439254.2 + pow(x, 4) *7869448124.8 - pow(x, 3) * 15648965509.0 + pow(x, 2) * 17503313074.0 - (x)* 10440563329.0 + 2594694745.0; // result y = 3584
    printf("%f\n", y);
    return 0;
}