📜  python代码示例中两个数字的乘法

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

代码示例1
#This program by raj Chaudhari
#Store A value In A and B
a=10
b=20
#One Multiplicatioin Opratror For Multiply Two Number Is ("*")
c=a*b
print("Multiplication of A and B is" ,c)