import math
while True:
try:
a,b,n = map(int, input().split()) #分配測資變數
except:
break
num = str(math.floor(a * (10 ** n) / b)) #先拉大然後向下取整
if len(num[0:(-n)]) == 0: #避開0.xxxx的情況
print('0.' + num[(-n):-1] + num[-1])
else:
print(num[0:(-n)] + '.' + num[(-n):-1] + num[-1])
===========================
試過
#0 #1兩測資點都RE...請問怎麼修改比較好,謝謝~