using System;
using System.Dynamic;
public class Program
{
public static void Main()
dynamic x = new Object();
x.x = 5;
Console.WriteLine(x.x);
}