import math # Read input j, m, b = map(int, input().split(',')) # Calculate total and average T = j + m + b A = T / 3 A_rounded = math.floor(A * 10) / 10 # Round down to the first decimal # Format and print the result print(f"合計点:{T}平均点:{A_rounded:.1f}")