using System;
public class Program
{
public static void Main()
decimal totalPrice = new Decimal(2.544454554);
Console.WriteLine(Math.Round(totalPrice, 2, MidpointRounding.AwayFromZero));
}