namespace ConsoleApp

{

ย  ย  class Program

ย  ย  {

ย  ย  ย  ย  public static void Main()

ย  ย  ย  ย  {

ย  ย  ย  ย  ย  ย  WriteLine("์›์˜ ๊ธธ์ด๋ฅผ ์ž…๋ ฅํ•˜์‹œ์˜ค. ");

ย  ย  ย  ย  ย  ย  float length = float.Parse(Console.ReadLine());

ย  ย  ย  ย  ย  ย ย 

ย  ย  ย  ย  ย  ย  float Circle = length * (float)Math.PI;

ย  ย  ย  ย  ย  ย  float Area = 2 * Circle;

ย  ย  ย  ย  ย  ย  float Round = length * Circle;

ย  ย  ย  ย  ย  ย  WriteLine("์›์˜ ๋‘˜๋ ˆ๋Š” {0}, ๋„“์ด๋Š” {1} ์ž…๋‹ˆ๋‹ค.", Area, Round);

ย  ย  ย  ย  }

ย  ย  }

}


์ผ๊ธฐ๋Š” ์ธ๋””๊ฒŒ์ž„๊ฐœ๋ฐœ๊ฐค์—.