using System;
namespace MyApplication
{
class Program
static void Main(string[] args)
const int myNum = 15;
myNum = 20;
Console.WriteLine(myNum);
}