public static void Main()
Console.WriteLine("Please enter an integer:");
string value = Console.ReadLine();
int n = Int32.Parse(value);
string roman = IntToRoman(n);
Console.WriteLine($"Roman numeral: {roman}");
private static string IntToRoman(int n)
return "[I don't know at this time]";