1
0

Remove args

This commit is contained in:
Serghei Cebotari 2023-08-09 15:12:39 +03:00
parent b11227be2d
commit 48fa2c5533
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
{ {
public class Program public class Program
{ {
public static void Main(string[] args) public static void Main()
{ {
int count = int.Parse(Console.ReadLine()!); int count = int.Parse(Console.ReadLine()!);
for (int i = 0; i < count; i++) for (int i = 0; i < count; i++)

View File

@ -18,7 +18,7 @@ public class Tests
}; };
IOTester.SetInput(input); IOTester.SetInput(input);
Program.Main(new string[0]); Program.Main();
string[] output = new string[] string[] output = new string[]
{ {