using System;
public class CicleCalc
{
public static void Main()
float f = 12.5F;
Console.WriteLine("The circumference of the circle is: " + (2*Math.PI*f));
Console.WriteLine("The area of the circle is: " + (Math.PI*Math.Pow(12.5,2.0)));
}