public static void Main()
decimal XInInt = (3000 / 881);
decimal xInDecimal = ((decimal)3000 / 881);
Console.WriteLine($"X in Int = {XInInt}");
Console.WriteLine($"X in Decimal = {xInDecimal}");
Console.WriteLine("------------------------------");
Console.WriteLine($"Calculation with X of type int = {XInInt * (true ? 130: 130 * 2)}");
Console.WriteLine($"Calculation with X of type int = {xInDecimal * (true ? 130: 130 * 2)}");