using System;
public class Program
{
public static void Main()
//the explanation
Console.WriteLine("Given a numeric day of the week, have it tell you which day it is. 0 = Sunday");
Console.WriteLine();
Console.WriteLine("Please enter what day of the week it is");
//User input
int uiD = Convert.ToInt32(Console.ReadLine());
//---------------------------------
}