using System;
public static class Program
{
public static void Main()
{
double dbl = 10510.49;
long l = Convert.ToInt64(dbl);
Console.WriteLine(l);
dbl = 10510.50;
Console.WriteLine(Convert.ToInt64(dbl));
dbl = 10510.51;
Console.WriteLine(Convert.ToInt64(dbl));
}
}
/*
run:
10510
10510
10511
*/