I write this code:
#include"bigint.h"
#include<iostream>
using namespace std;
using namespace Dodecahedron;
int main(){
Bigint a,b;
cin>>a>>b;
a-=b;
cout<<a<<'\n'<<-1%10;
return 0;
}
I get this output after #9 #ab6c858
IN:
5 6
OUT:
-999999999
-1
Before #9 at #1b840c7, everything is right
So may "subtraction fix" make subtraction fail?
I write this code:
I get this output after #9 #ab6c858
Before #9 at #1b840c7, everything is right
So may "subtraction fix" make subtraction fail?