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