using System;
public class Program
{
public static void Main()
var total = 10.00; // ---- CHANGE THIS - Total Amount Requesting
var divider = 3; // ---- OR CHANGE THIS - Number of Payments
while (divider > 0){
var amount = Math.Round(total / divider, 0);
Console.WriteLine("Amount: " + amount);
total -= amount;
divider--;
}