m = a(1) : s = 0
For i = 2 To 5
If a(i) > m Then m = a(i)
s = s + m
Next i
数组元素a(1)到a(5)的值依次为“1,3,4,2,3”,执行该程序段后,变量s的值为( )