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