using System;
class Program {
static void Main() {
// Declare and initialize the price of the items double priceItem1 = 5.99;
double priceItem2 = 15.99;
// Declare and calculate the total price double totalPrice = priceItem1 + priceItem2;
// Display the result in a full sentence
Console.WriteLine("The price of item 1 is $" + priceItem1 + " and the price of item 2 is $" priceItem2 ". The combined total is $" totalPrice);
} }