#include
#include<stdio.h>
using namespace std;
int main() {
int a , b;
scanf("%d%d",&a,&b);
int c = a-b;
c= (c/10)*10 + (c%10 + 1)%10;
printf("%d\n",c);
return 0;
}
I AM JUST CHANGING LAST DIGIT OF CODE TO INCREMENT BY 1 , IF THE LAST DIGIT IS 9 THEN IT IS REPLACED BY 0