x = input().split(",") a,b,c = map(int,x) sum = a+b+c print("合計点:"+sum) print("平均点:"+round(sum/3,1))