using System;
public class Program
{
public static void Main()
var integer = Convert.ChangeType(3.6, typeof(int));
Console.WriteLine(integer);
}