#include < stdio.h >
#include < conio.h >
void main () {
int r,c;
printf("pls enter the radius value");
scanf("%d",&r);
c = 3.14*r*r;
printf("volume of circle %d",c);
getch();
}