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