public static function getPercentPrice(int $price, int $percent): int { return ($price / 100) * $percent; }