You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
231 B
11 lines
231 B
# 衣柜部分
|
|
a = (888 * 24) # 套餐内衣柜
|
|
print(a)
|
|
|
|
# 橱柜部分 假如地柜台面吊柜都是超出3米
|
|
d = (3*999 + 3*999 + 3*999)
|
|
|
|
e = d + 4999
|
|
|
|
# 24米定制 + 6米台面6米地柜4米吊柜 - 楼控部分
|
|
print(a + e)
|