from decimal import Decimal, ROUND_HALF_UP n, score = input().split(";") s = score.split(",") def round_correct(num): return Decimal(str(num)).quantize(Decimal("0.01"), rounding=ROUND_HALF_UP) print( f"The each subject score of No. {n} is {round_correc...