#include <iostream>
using namespace std;
int main()   {
	int S;
	int T;
	cin >> S;
	cin >> T;
	cout << S/T << endl;
}