public static void Main()
Console.WriteLine("Hello User! What times table would you like to output?");
string ttS = Console.ReadLine();
double ttD = Convert.ToDouble(ttS);
Console.WriteLine("How far would you like to go?");
string lengthS = Console.ReadLine();
int lengthI = Convert.ToInt32(lengthS);
for(int counter = 0; counter < lengthI + 1; counter++) {
double ttR = ttD * counter;
Console.WriteLine(ttD + " * " + counter + " = " + ttR);