#include<bits/stdc++.h>
using namespace std;
int main()
{
int s=0, n, m, x, i;
string a;
cin>>a;
cin>>m;
n=a.size();
for(i=0; i<n; i++){
x=a[i]-48;
s=(s*10+x)%m;
}
cout<<s<<endl;
return 0;
}
|
Subscribe to:
Post Comments (Atom)
-
#include<bits/stdc++.h> #define ll long long using namespace std ; ll n , k , t_case ; ll bigmod ( ll b , ll p , ll m...
-
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 ...
-
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 3...
No comments:
Post a Comment