5 lines
No EOL
75 B
Python
5 lines
No EOL
75 B
Python
def puiss(y,x):
|
|
res = y
|
|
for i in range(x):
|
|
res = res*y
|
|
return res |