Program.cs 377 B

123456789101112131415161718
  1. using System;
  2. namespace D10._2
  3. {
  4. class Program
  5. {
  6. static void Main(string[] args)
  7. {
  8. if (args.Length < 1) throw new ArgumentException();
  9. string input = args[0];
  10. int tries = 50;
  11. _1.Program.Apply(ref input, ref tries);
  12. Console.WriteLine($"The answer is : {input.Length}");
  13. }
  14. }
  15. }