#include int main() { double N,M; std::cin >> N; std::cin >> M; N = ((N/1000)/M)*1000; std::cout << N << std::endl; return 0; }