#try to avoid input function a = int(input("Enter any Number :")) c = a b = int(input("Enter Power :")) for i in range(b-1): a = a*c print(a)
Click the run button. Try to avoid input() function.