matematika dalam fungsi

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