Console.WriteLine("DIY CALCULATOR - Matthew Tudio, Angel Tanaka 9C");
Console.WriteLine("A Program that Prints the conversion of inches to feet");
double firstNum, secondNum, quotient;
Console.WriteLine("Enter the number of Inches");
firstNum = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Enter the number 12");
secondNum = Convert.ToDouble(Console.ReadLine());
quotient= firstNum / secondNum;
Console.WriteLine("The conversion in feet is " + quotient)