diff options
author | Anthony Wang | 2022-03-05 21:17:28 -0600 |
---|---|---|
committer | Anthony Wang | 2022-03-05 21:17:28 -0600 |
commit | b4feee9a2bebec9a5ced081f9b4dada8e34c218c (patch) | |
tree | 2630655f76b5ec6447fd3a3001fcb2d15019f620 /Math | |
parent | e8300f4a2777424c0c0bb3c4fadb203e3700e4fc (diff) |
Diffstat (limited to 'Math')
-rw-r--r-- | Math/numtheory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Math/numtheory.cpp b/Math/numtheory.cpp index 282e39f..2472c47 100644 --- a/Math/numtheory.cpp +++ b/Math/numtheory.cpp @@ -1,4 +1,4 @@ -constexpr ll MOD = 1e9+7; +const ll MOD = 1e9+7; inline ll pw(ll base, ll exp) { ll res = 1; |