using System;
public class Program
{
public static void Main()
float f=1234567894567891.125F;
int i=(int)f;
Console.WriteLine("the value in Int as {0}",i);
}
//Tha above program has f value exceeded the float limit,so on trying to Type cast it displays the lease number in int.//