10 lines
163 B
C++
10 lines
163 B
C++
|
#include "residue.h"
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
int main() {
|
||
|
Residue<2147483647> a(2147483644);
|
||
|
Residue<2147483647> b(2147483645);
|
||
|
cout << int(a * b) << endl;
|
||
|
}
|