public static void Main()
const double PI = 3.14159;
Console.WriteLine("enter radius");
int r = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("enter height");
int h = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("The volume of the cylinder is " + volume + " and the surface area is " + sa);