From 1709b40cabccaf80b1ff77c5fb5ba9dc3cfeaa15 Mon Sep 17 00:00:00 2001 From: Serghei Cebotari Date: Fri, 15 Dec 2023 23:05:50 +0300 Subject: [PATCH] Rename Parser class --- Codeforces.Console/Program.cs | 6 +++--- 1 file 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() {