using System;
//
// Write a C# program to calculate the sum of two integer values. If the two values are the same, then return triple their sum
// Sample Input:
// 1, 2
// 3, 2
// 2, 2
// Expected Output:
// 3
// 5
// 12
public class Program
{
public static void Main()
Console.WriteLine("Input 1, 2 returns " + test(1,2));
Console.WriteLine("Input 3, 2 returns " + test(3, 2));
Console.WriteLine("Input 2, 2 returns " + test(2, 2));
}
private static int test(int n1, int n2)
return 0; // Replace this with the algorithm