#include<bits/stdc++.h> using namespace std; int main(){ int n,k; cin>>n>>k; if(n%k==0) { cout<<k; return 0; } cout<<n%k; return 0; }
WA×12