from decimal import *setcontext(Context(rounding=ROUND_DOWN))try: while True: a,b,c=map(int,input().split()) print(round(Decimal(a/b),c))except: pass