You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <cstdio>
|
|
int main()
|
|
{
|
|
long long p,d,ans,t=10;
|
|
scanf("%lld%lld",&p,&d);
|
|
ans=++p;
|
|
for(;;)
|
|
{
|
|
if(p%t>d)
|
|
break;
|
|
ans=p-p%t;
|
|
t=t*10;
|
|
}
|
|
printf("%lld",ans-1);
|
|
return 0;
|
|
}
|