#include int main(void) { int S, K; std::cin >> S >> K; std::cout << S % K << std::endl; return 0; }