using System;
public class Program
{
public static void Main()
float precise = 1.000001f;
var roundedUp = (int)Math.Ceiling(precise);
Console.WriteLine(roundedUp + ": " + roundedUp.GetType());
}