;just a sample input file to show the syntax of the commands ;update from the initial read update ;add a student add student 333-33-3333,Mike Major,Rel,4.0,60 ;add a course to the newly added student add course 333-33-3333 11011,1001,Rel,C+,3 ;update that student update ;list all the students and all their information list students ;list the new student's courses list course 333-33-3333 ;remove the new student's course remove course 333-33-3333 11011 ;remove the new student remove student 333-33-3333 ;this shouldn't do anything update ;were done!!