예제 #1
0
        static void Main()
        {
            StudentSystem studentSystem = new StudentSystem();

            while (true)
            {
                string[] command = Console.ReadLine().Split();
                studentSystem.CreateOrShow(command);
            }
        }