etc/Coding Test
[codeup] 92. 소리 파일 저장용량 계산하기
Jun's N
2021. 12. 22. 19:45
h,b,c,s = map(int, input().split())
sum = (h*b*c*s)/8/2**20
print("%.1f MB" %(sum))
728x90