//write a program to find the volume and surface area of cubiod.
#include<stdio.h>
int main()
{
float w, l, h;
float volume, area;
printf("Enter the value width, length and height of cubiod \n");
scanf("%f%f%f", &w, &l, &h);
area = 2*(w*l+l*h+h*w);
volume = w*l*h;
printf("surface area of cubiod is %3f", area);
printf("\n volume of cubiod is %3f", volume);
}