a = input().split(";") num = int(a[0]) a,b,c = map(float,a[1].split(",")) a = round(a+0.00001,2) b = round(b+0.00001,2) c = round(c+0.00001,2) print(f"The each subject score of No. {num} is {a:.2f}, {b:.2f}, {c:.2f}.")
a = input().split(";") num = int(a[0]) a,b,c = map(float,a[1].split(",")) a = round(a+0.00001,2) b = round(b+0.00001,2) c = round(c+0.00001,2) print(f"The each subject score of No. {num} is {a:.2f}, {b:.2f}, {c:.2f}.")