using System; public class Test { public static void Main() { double mpg = 24; double x = mpg / (36 / 12.74); Console.WriteLine(x); } }