You can search for `Name` and every time is found you go to the next `numm` lines and sum the scores:
#!/bin/bash
file=$1
num=$2
awk -v numm="$num" '
/Name/{
mark = 0;
printf("%s ",$2);
for ( i=0; i
mark += $2;
}
printf("%d\
", mark);
}' $file
the result:
Rad 468
Din 375
Hardy 320