''''''w,h,b = map(int,input().split()) # 100 100 4 입력result=(w*h*b)/8/1024/1024print("%.2f"%result,"MB") # 0.00MBprint(round(result,2)) # 0.0이거 round함수 왜 0.0으로 나오나요? 2인데
파이썬은 bankers rounding써서 가장 가까운 짝수로 반올림함
아니면 decimal 쓰는걸 추천
감사합니다.
whb는 뭐임 쓰리사이즈임?