#include <iostream> using namespace std; int main(){ int h, t; cin >> h >> t; cout << h/t << endl; return 0; }