#include<bits/stdc++.h> using namespace std; int main(){ int a,b,n,s; cin>>a>>b>>n; for(int i=0;i<=n;i++) s=a/b,a=a%b*10; cout<<s; }