public static int myTest(int aInputValue){
int newValue = aInputValue * 3;
public static void Main(string[] args)
int myNewValueAfterMethod = myTest(originalValue);
Console.WriteLine("Original value is: " + originalValue);
Console.WriteLine("new value after using myTest int function: " + myNewValueAfterMethod);