using System;
public class Program
{
public static void Main()
const double PI = 3.14;
Console.WriteLine(PI);
// PI = 5.2; // This will throw an error
}