using System;
public class Program
{
public static int triplo(int n)
int t;
t = 3 * n;
return t;
}
public static void Main()