a, b = map(float,input().split()) N = a+b N = round(N,6) print("{:.6f}".format(N))
알아야 할 것은 1. round 함수 2. format 함수 사용법 ★★★★★
"{:.소수점갯수f}".format(N)