Computer Science, asked by Rithikka74, 9 months ago



1 def power(b, p):
2 y = b ** P
3return y
4
5def calcSquare(x):
6a = power(x, 2)
7return a
8
9n = 5
10result = calcSquare(n) 7
11print(result)
answer this question ​

Answers

Answered by kishore2803
1

The answer of this question is 25

Similar questions