using System;
public class Program
{
public static void Main()
/*In this equation the '*' has a higher precedence there for the 2 * 3 is evaluated first.*/
double x = 10 - 2 * 3;
Console.WriteLine("10 - 2 x 3 = " + x);
}