Program.cs 321 B

1234567891011121314151617
  1. using System;
  2. using static D12._1.Program;
  3. namespace D12._2
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. int[] Registers = new int[5] { 0, 0, 1, 0, 0 };
  10. Work(args, Registers);
  11. Console.WriteLine($"The answer is : {Registers[0]}");
  12. }
  13. }
  14. }