SS
Size: a a a
SS
SS
AT
from decimal import Decimal as dec
def Proc(Numberal, Procent):
return (dec(Numberal)/dec(100))*dec(Procent)
x = '0.45'
y = '0.56'
print(Proc(y, 95))
Profit_Proc_95 = Proc(y, 95) - dec(x)
print(Profit_Proc_95)
A
R
AT
Go
Go
MN
SS
БГ
R
SS
Go