📜  如何修复 def multiply(a ,b): a*b - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:36.355000             🧑  作者: Mango

代码示例2
a=int(input("enter the first number: "))
b=int(input("Enter the second number: "))
def=a*b;
print("The multiply is: ",def)