diff --git a/Codeforces.Console/Program.cs b/Codeforces.Console/Program.cs index 4da79bd..133481a 100644 --- a/Codeforces.Console/Program.cs +++ b/Codeforces.Console/Program.cs @@ -4,16 +4,16 @@ { public static void Main() { - int count = IOParser.ParseNumber(); + int count = InputParser.ParseNumber(); for (int i = 0; i < count; i++) { - var numbers = IOParser.ParseNumbers(); + var numbers = InputParser.ParseNumbers(); Console.WriteLine(numbers.Sum()); } } } - public static class IOParser + public static class InputParser { public static int[] ParseNumbers() {