#includemain() { int x,y,z; printf("enter value for x,y,z"); scanf("%d%d%d",&x,&y,&z); x += y*z+x; printf("\n x = %d",x);}