def getSum(price,num):
    c=price * num
    return c
# 桔子
ab = getSum(10,3)
#牛肉
ac = getSum(30,20)
print(ab)
print(ac)