public static void Main()
Console.WriteLine("How many miles have you driven: ");
Miles = Convert.ToInt16(Console.ReadLine());
Console.WriteLine("How many gallons did you use: ");
Gallons = Convert.ToInt16(Console.ReadLine());
int MPG = ( Miles/Gallons );
Console.WriteLine(" Your car has a MPG of: "+ MPG);