fork download
  1. def power(x,n):
  2. s=1
  3. while n>0:
  4. n=n-1
  5. s=s*x
  6. print(s)
  7.  
  8.  
Success #stdin #stdout 0.09s 14168KB
stdin
Standard input is empty
stdout
Standard output is empty