import math # Read the input and split into three integers j, m, b = map(int, input().split(',')) # Calculate the total score total = j + m + b # Calculate the average and truncate to one decimal place average = total / 3 truncated_average = math.floor(average * 10) / 10 # Format the output as required print(f"合計点:{total}平均点:{truncated_average:.1f}")