using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
float tt = 1.2000000005f * 1000;
float rounded = (float)(Math.Round(tt));
float roundedFinal = rounded / 1000;
Console.WriteLine(roundedFinal);
}