public static void Main()
string title = "PLEASE ENTER A STOCK SYMBOL THAT YOU WOULD LIKE INFORMATION ABOUT:";
Console.WriteLine(title);
String TeslaInfo = ("\nTESLA'S STOCK INFORMATION: \n \n Market Capitalization: $755.77B \n Stock Price: $787.38 \n Stock Volume: 17,620,757 \n 52 Week Stock Price Range : $70.10 - 900.40 \n 2020 Net Income: $690,000,000\n");
String AmazonInfo = ("\nAMAZON'S STOCK INFORMATION: \n \n Market Capitalization: $1.68T \n Stock Price: $3,328.23 \n Stock Volume: 3,003,607 \n 52 Week Stock Price Range : $1,626.03 - $3,552.25 \n 2020 Net Income: $21.33B\n");
String EasterEgg = ("\nCONGRATULATIONS YOU FOUND AN EASTER EGG!\n");
string userResponse = Console.ReadLine();
if (userResponse == "TSLA")
Console.WriteLine(TeslaInfo);
else if (userResponse == "AMZN")
Console.WriteLine(AmazonInfo);
else if (userResponse == "OLPH")
Console.WriteLine(EasterEgg + ("Good job, here's your prize --> 🏆\n"));
Console.WriteLine("\n*ERROR* The Stock Symbol You Entered Does Not Exist In The Database\n");