'''

'''
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인데