jmb = list(map(int,input().split(","))) print("合計点:{}".format(int(sum(jmb)))) print("平均点:{:.1f}".format(sum(jmb)/len(jmb)))