using System;
public class Program
{
public static void Main()
//Allocates an int on the stack and sets its value to 100.
int j = 100;
int i = new int();
Console.WriteLine(i);
}