cara memperbaiki def multiply (a, b): a*b
//Statement
def multiply(a, b):
a * b
//Line 3 is wrong, so the correct line is
def multiply(a ,b)
return (a * b)
iCONICAST
//Statement
def multiply(a, b):
a * b
//Line 3 is wrong, so the correct line is
def multiply(a ,b)
return (a * b)
a=int(input("enter the first number: "))
b=int(input("Enter the second number: "))
def=a*b;
print("The multiply is: ",def)
def multiply(a ,b):
return (a * b)