using System;
public class Program
{
public static void Main()
//Write a C# Sharp program to compute the sum of the two given integer values. If the two values are the same, then return triple their sum.
Console.WriteLine("Daniel Mosqueda Alfaro 1-E");
Console.WriteLine(test(1,2));
Console.WriteLine(test(3,2));
Console.WriteLine(test(2,2));
Console.ReadLine();
}
public static int test(int x, int y)
return x == y ? (x + y)*3 : x + y;