std_names, std_ids, batches, depts = [], [], [], []
for i in range(43):
name = input()
std_id = input()
batch = input()
department = input()
std_names.append(name)
std_ids.append(std_id)
batfches.append(batch)
depts.append(department)
# access first student
std_names[0], std_ids[0], batches[0], depts[0]
# adding new student in middle of the list or removing student is hazardous!