public static void Main()
Console.WriteLine("Hello World");
public class ChangeMachine
public Change GetCorrectChange(int cents)
throw new NotImplementedException();
public int Dollars { get; set; }
public int Quarters { get; set; }
public int Dimes { get; set; }
public int Nickels { get; set; }
public int Pennies { get; set; }