#include /* * * 5.23 * * */ int main () { int a = 0; int b = 0; std::cin >> a >> b; std::cout << a / b << std::endl; return 0; }