using System;
public class Program
{
public static void Main()
//1-2*П*R R-1/(2*П)//
Console.WriteLine("Введіть довжину кола");
int l=int.Parse(Console.ReadLine());
double R=Math.Round(1/(2*Math.PI),3);
//double a-Math/Round(R,3);//
Console.WriteLine("Радіус - " + R);
}