#include <iostream>

int main()
{
    int x, y;
    std::cin >> x >> y;
    std::cout << x/y << std::endl;
}
