using System;
public class Program
{
public const int TOTAL_COINS = 150;
public const double TOTAL_VALUE = 9.45;
public static void Main()
int dimes = 0, nickels = 0;
// Your code goes here
Console.WriteLine($"There are {dimes} dimes and {nickels} nickels in ${TOTAL_VALUE}");
}