aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSerghei Cebotari <serghei@cebotari.ru>2023-12-15 23:05:50 +0300
committerSerghei Cebotari <serghei@cebotari.ru>2023-12-15 23:05:50 +0300
commit1709b40cabccaf80b1ff77c5fb5ba9dc3cfeaa15 (patch)
treee3787f6a21b0e469d3ea8e30198a6302d8e3d783
parent48d49b2ef7980d91db130aef07321751af61eaee (diff)
Rename Parser classHEADmaster
-rw-r--r--Codeforces.Console/Program.cs6
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()
{