+ 1
. Complete the function definition so it returns the square of the product of the parameters, so sqrProd(2, 5) returns (2*5)
Hey can someone help me with this question. Iam new to python so I am bit lagging behind. Pls 🙏
2 Antworten
0
def sqr(x,y):
return x*y
print(sqr(x=int(input())),y=int(input()))