This repository has been archived on 2021-10-31. You can view files and clone it, but cannot push or open issues or pull requests.
ProgrammingChallenges/modular_exponentiation.py

17 lines
250 B
Python
Raw Normal View History

2019-03-28 16:14:30 +00:00
import math
import sys
def mod_exp(x, y, m):
k = x % m
for i in range(y):
print(i)
k = (k * x) % m
return k
line = sys.stdin.readline().split()
x = int(line[0])
y = int(line[1])
m = int(line[2])
print(mod_exp(x, y, m))