public static void Main()
n = Convert.ToInt32(Console.ReadLine());
z = Convert.ToDouble(Console.ReadLine());
if ((n>=1 && n<=4) && z > 0)
a = Math.Pow(1.0/3, 6 * z);
a = Math.Pow(1.0/3, 12 * z);
a = 2 * Math.Sqrt(z / 3);
else Console.WriteLine("ошибка!");
Console.WriteLine("{0} {1} {2} {3}", a, r1, r2, s);