#include<bits/stdc++.h> using namespace std; int main(){ int m,t,s; cin >> m >> t >> s; cout << m-s/t; return 0; }