#include using namespace std; int main(){ int A, B; cin >> A >> B; B = abs(B); cout << (A % B + B) % B << '\n'; }