using System;
public class Program
{
public static void Main()
//double d = Math.Round(141.115,2, MidpointRounding.ToEven
// double c = Math.Ceiling(141.105* 100) / 100;
double d = Math.Round(141.105,2);
double c = Math.Round(141.205,2);
Console.WriteLine("Round - " + d + " and Round - " + c);
}