#include<stdio.h>
#define PI 3.1415026535897793
struct cylinder{
    int cylinder;
    int height;
};
int main(){
    struct cylinder c1;
    int r;
    int h=c1.height;
    scanf("%d %d",&r,&h);
    if(r<=0 || h<=0){
        printf("Invalid input");
        return 0;
    }
    float sourface =2*PI*r*h(2*PI*r*r);
    float volume =PI*r*r*h;
    printf("Surface Area: %.2f\n",surface);
    printf("Volume: %2.f",volume);
    return 0;
}