Skip to content

Instantly share code, notes, and snippets.

@filipend0
filipend0 / BigInt.cpp
Created November 12, 2020 20:49 — forked from ar-pa/BigInt.cpp
bignum class for C++
// In the name of Allah.
// We're nothing and you're everything.
// Ya Ali!
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn = 1e2 + 14, lg = 15;