Program.cs
 

using System;

namespace MyApplication
{
  class Program
  {
    static void Main(string[] args)
    {
      int x = 10;
      Console.WriteLine(x);  
     }
  }
}

Result:
10