'''

'''
w,h,b = map(int,input().split()) # 100 100 4 입력
result=(w*h*b)/8/1024/1024
print("%.2f"%result,"MB") # 0.00MB
print(round(result,2)) # 0.0

이거 round함수 왜 0.0으로 나오나요? 2인데

0.00 으로 나와야하는거 아닌가요?

result값은 0.00476837158203125