aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Codeforces.Console/Program.cs9
1 files changed, 6 insertions, 3 deletions
diff --git a/Codeforces.Console/Program.cs b/Codeforces.Console/Program.cs
index 3fa975f..4da79bd 100644
--- a/Codeforces.Console/Program.cs
+++ b/Codeforces.Console/Program.cs
@@ -4,14 +4,17 @@
{
public static void Main()
{
- int count = ParseNumber();
+ int count = IOParser.ParseNumber();
for (int i = 0; i < count; i++)
{
- var numbers = ParseNumbers();
+ var numbers = IOParser.ParseNumbers();
Console.WriteLine(numbers.Sum());
}
}
-
+ }
+
+ public static class IOParser
+ {
public static int[] ParseNumbers()
{
return Console.ReadLine()