Implement CLI application by editing src/App.cs You may add new files to keep your code clean, if it is allowed in your challenge.
You can get arguments as args
parameter, defined in Main method
public class App
{
static public void Main(string[] args)
{
// code to run
}
}
You can use Console.WriteLine
method to out put your results.
Console.WriteLine("hoge")