using System;
public class Program
{
public static void Main()
// round total
Console.WriteLine(decimal.Round(0.1111m *10 , 2, MidpointRounding.AwayFromZero));
// round price then calculate the total
Console.WriteLine(decimal.Round(0.1111m , 2, MidpointRounding.AwayFromZero)*10);
}