Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
Modular exponentiation
a guest
May 13th, 2017
317
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
Python
0.14 KB
| None
|
0
0
raw
download
clone
embed
print
report
# compute B^E mod M
def
prodmodul
(
B
,
E
,
M
)
:
buf
=
1
while
E
>
0
:
buf
=
(
buf *
(
(
B**
(
E%
10
)
)
% M
)
)
% M
B
=
(
B**
10
)
% M
E//
=
10L
return
buf
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
✅ Make 3000$ in 20 minutes 💵 💎
JavaScript | 9 min ago | 0.22 KB
✅ MAKE $2500 IN 15 MIN ✅ Working 💵 💎
JavaScript | 26 min ago | 0.22 KB
✅ Instant BTC Profit Method ✅ Working 🚨 🔥
JavaScript | 43 min ago | 0.22 KB
Untitled
Python | 57 min ago | 1.23 KB
✅ Free Crypto Method 🔥 🚨
JavaScript | 60 min ago | 0.22 KB
✅ ChangeNOW Profit Exploit 💎 💵
JavaScript | 1 hour ago | 0.22 KB
✅ Crypto Swap Glitch ✅ Still works 💎 💵
JavaScript | 1 hour ago | 0.22 KB
✅ Swapzone money bug 🚨 🔥
JavaScript | 1 hour ago | 0.22 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!