09 08 23

You might also like

You are on page 1of 2

# 15

c = float(input("Enter Cost price :"))


s = float(input("Enter selling price :"))
p = s-c
print ("Profit Earned:",p)
# 16
d = int(input("Input total liablities:"))
e = int(input("Enter Shareholds Equity:"))
ls = d/e
print ("d to e ratio is:",ls)
# 17
d = int(input("Input total Assets:"))
e = int(input("Enter Shareholds Equity:"))
ls = d/e
print ("equity multiplier is:",ls)
# 18
cgos = int(input("Enter costs of goods sold:"))
oc = int(input("Enter operating cost :"))
rc = int(input("Enter revenue generated:"))
gp = rc - cgos
np = rc - cgos - oc
p = np/rc*100
print ("Gross profit:",gp)
print ("Net profit:",np)
print ("Net profit percentage:",p)

You might also like