//============================================================================ // Name : yuki128.cpp // Author : // Version : // Copyright : Your copyright notice // Description : Hello World in C++, Ansi-style //============================================================================ #include using namespace std; int main() { long long int n; int m; cin >> n >> m; cout << ((n/m)/1000)*1000 << endl; return 0; }