#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
 float x;
 clrscr();
 printf("enter the value of x:");
 scanf("%f",&x);
 printf("\n%f",pow(x,5)+10*pow(x,4)+8*pow(x,3)+4*x+2);
 getch();
}
