# Read the input line and split into components j, m, b = map(int, input().split(',')) total = j + m + b average = total / 3 truncated_avg = int(average * 10) / 10 # Truncate to one decimal place print(f"合計点:{total}平均点:{truncated_avg:.1f}")