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