#include #include #include using namespace std; int main() { int N, M, ans; cin >> N >> M; ans = N / M; cout << ans << endl; return 0; }