using System;
public class Program
{
public static void Main()
double [] prices = [10, 9.99, 2.5, 20.99, 1];
double total = 0;
double highest = 0;
foreach(double price in prices)
total = total + price;
if(price>highest)
highest = price;
}
Console.WriteLine("Your total is "+total);
Console.WriteLine("The highest price is "+highest);