Log 2381
20/12/2023 2023-12-20 20:33$discount = #אחוז הנחה#; // Replace with actual discount value
$amount = #סכום#; // Replace with actual amount value
$profit = #רווח#; // Replace with actual profit value
$result1 = ($discount / 100) * $amount;
$result2 = $amount – $result1;
return “Result 1: ” . $result1 . “
“;
return “Result 2: ” . $result2 . “
“;
$result3 = ($discount / 100) * $profit;
$result4 = $profit – $result3;
return “Result 3: ” . $result3 . “
“;
return “Result 4: ” . $result4 . “
“;