// editor5
#include <stdio.h>
#include <math.h>

#define PI 3.141592653589793

struct Cylinder {
    int radius;
    int height;
};

union Result {
    float surfaceArea;
    float volume;
};