diff options
author | Serghei Cebotari <serghei@cebotari.ru> | 2023-12-15 23:05:50 +0300 |
---|---|---|
committer | Serghei Cebotari <serghei@cebotari.ru> | 2023-12-15 23:05:50 +0300 |
commit | 1709b40cabccaf80b1ff77c5fb5ba9dc3cfeaa15 (patch) | |
tree | e3787f6a21b0e469d3ea8e30198a6302d8e3d783 | |
parent | 48d49b2ef7980d91db130aef07321751af61eaee (diff) |
-rw-r--r-- | Codeforces.Console/Program.cs | 6 |
1 files changed, 3 insertions, 3 deletions
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() { |