-
Notifications
You must be signed in to change notification settings - Fork 55
Open
Labels

Description
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
IN:
5 6
OUT:
-1
-1
So may "subtraction fix" make subtraction fail?