using System; class Program { static void Main() { int TheValue = Subtract(3, 2); } public static int Subtract(int a, int b) { return a - b; } }