mathématiques en fonction
#math function in python:
def math(x,y):
z = x * y
return z
A = math(7,8)
print(A)
YEASIN ARAFAT
#math function in python:
def math(x,y):
z = x * y
return z
A = math(7,8)
print(A)