2. N number of student and M number of subject
Teacher Mr. Johnson want to check and skip the subject mark which has minimum average marks.
Print the result of each student with skipping the mark of minimum avg marks
let take example
N = 4 student
M = 5 subject
student1 = {5, 8, 2, 4, 8}
student2 = {3, 6, 3, 7, 2}
student3 = {4, 8, 1, 7, 4}
student4 = {8, 8, 4, 4, 6}
here in this case subject number 3 has minimum avg marks (M1 avg = 5, M2 avg = 7.5, M3 = 2.5, M4 =5.5, M5 = 5 ) so need to skip from result and print the result skipping the minimum marks subject.