From e1ce59c98e61feff30a9e34cfc2881b7f2cad58f Mon Sep 17 00:00:00 2001 From: balaramakrishna245 <43821066+balaramakrishna245@users.noreply.github.com> Date: Wed, 3 Oct 2018 21:24:58 +0530 Subject: [PATCH] Hacktoberfest --- Maths/ModularExponential.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Maths/ModularExponential.py b/Maths/ModularExponential.py index b3f4c00bd5d8..d46df99533e3 100644 --- a/Maths/ModularExponential.py +++ b/Maths/ModularExponential.py @@ -11,7 +11,7 @@ def modularExponential(base, power, mod): base = (base * base) % mod return result - +#here goes the main. def main(): print(modularExponential(3, 200, 13))