from decimal import Decimal
a = Decimal('1')
b = Decimal('3')
c = Decimal('3')
print(a/b*c)

とすると、こんどは1.0にはならない。