using System;
using System.Collections.Generic;
public class App
{
public static void Main()
var decimalValue = 5m;
bool assign = true;
decimal test = assign ? 0 : decimalValue;
var test2 = test*decimalValue;
Console.WriteLine(test2.ToString());
}