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