using System; class ExplicitConv { static void Main() { double a = 5.654321; int b; b = (int)a; Console.WriteLine("The value is {0}", b); } }