j, m, b = map(int, input().split(',')) T_sum = j + m + b A_ave = T_sum / 3 print("合計点:{}".format(T_sum)) print("平均点:{:.1f}".format(A_ave))