You can use R to calculate the mean of a list of numbers:
a = c(7,8,9,10) b = mean(a) print(b)
## [1] 8.5