#include<bits/stdc++.h> using namespace std; #define ll long long int main() { ios_base::sync_with_stdio(0); ll n, k; cin>>n>>k; cout<<(n/k)<<endl; }