Write a program in C# that asks the user for their favorite color. The program should always respond in the following line: Mine too!
Input
Red
Output
Mine too!
using System;
class Program
{
public static void Main(string[] args)
{
Console.ReadLine();
Console.WriteLine("Mine too!");
}
}