using System;
class Program
{
static void Main() {
Console.WriteLine(Decimal.Divide(30.60m, 4.0m));
Console.WriteLine(Decimal.Divide(55.2m, 6.3m));
Decimal a = 6.02m;
Decimal b = 3.01m;
Console.WriteLine(Decimal.Divide(a, b));
}
}
/*
run:
7.65
8.761904761904761904761904762
2
*/