#include<stdio.h> int main() { float r,h,V; float r=2.5; float h=1.8; V=3.1415926*r*r*h; printf("%f",V); return 0; }