Challenge - #60 - Power-Mod Power Get link Facebook X Pinterest Email Other Apps July 11, 2021 # Enter your code here. Read input from STDIN. Print output to STDOUT a = int ( input ()) b = int ( input ()) m = int ( input ()) print ( pow (a,b), pow (a,b,m),sep= "\n" ) Read more