// Directions: Practice #8-1
// 1) Create a string variable for a numeric input.
// 2) Add a Switch statement to convert the variable to a Roman Numeral.
// 3) The switch statement should only convert input for 1, 2, 3, 4, 5, 6, 7, 8, 9, or 10.
// 4) If the output is outside the range, and appropriate error message should show.
// 5) Submit your dotnetfiddle link in Blackboard.
using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
}