using System;
public class Program
{
public static void Main()
int r=0;
Console.WriteLine("A kör sugara:");
r=Convert.ToInt32(Console.ReadLine());
Console.WriteLine("A kör kerülete: {0}, területe: {1}", 2*r*Math.PI, r*r*Math.PI);
}