public static void Main()
Console.WriteLine("This program will convert the value of yards that the user will input to meters");
Console.WriteLine("Enter the measurement in yards: ");
yard = int.Parse(Console.ReadLine());
Console.WriteLine("The conversion formula is yard multiplied to 0.9144 since there is 0.9144 meters per yard");
conversion = yard * meters;
Console.WriteLine("The conversion of yard {0} to meters is {1}", yard, conversion);