Modular Exponentiation

Can not pass all testcase

@nikunj19093 Your code is failing for large test cases. You have to print (a^b)mod c. The constraints given are 1<=a,b,c<=100000. So (a^b) can reach a very large value which cannot be handled by the datatype.
https://ide.codingblocks.com/s/142006

Refer this. You have to use the property of MOD as taught in lectures.