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