문제

링크

풀이

from decimal import Decimal
 
a, b, c = map(Decimal, input().split())
print(a * b / c)