# Read input and split into three integers j, m, b = map(int, input().split(',')) # Calculate total score total = j + m + b # Calculate average by truncating to the first decimal place average = (total * 10 // 3) / 10.0 # Output the result in the specified format print(f"合計点:{total}平均点:{average:.1f}")