using System;
/// <summary>
/// Creates a simple class
/// </summary>
public class App
{
// Use the [Ready] attribute to automaically
// run this method when the page is ready.
public static void Main()
int v = 2;
Console.WriteLine(v.GetType().ToString());
}