using System; class Program { static void Main() { int theValue = Add(1, 2); } public static int Add(int a, int b) { return a + b; } }