using System;
public class Program
{
public static void Main()
unsafe{
int test = 10;
int* p = test;
Console.WriteLine(test);
}