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