using System;
public class Program
{
public static void Main()
Console.WriteLine("הכנס רדיוס");
double x , a , b , c ;
x = double.Parse(Console.ReadLine());
a = (3.14*2*x) ;
b = (3.14*3*x*x) ;
c= (3.14*x*x );
Console.WriteLine( "{0} היקף המעגל " , a ) ;
Console.WriteLine("שטח פני הכדור {0}" , b ) ;
Console.WriteLine( "שטח פני המעגל {0} " , c ) ;
}