How to Calculate Blood Volume by Weight

How to Calculate Blood Volume by Weight – Accurate Blood Volume Calculator :root { –primary-color: #004a99; –success-color: #28a745; –background-color: #f8f9fa; –text-color: #333; –border-color: #ddd; –shadow-color: rgba(0, 0, 0, 0.1); –white: #fff; } body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: var(–background-color); color: var(–text-color); line-height: 1.6; margin: 0; padding: 0; display: flex; flex-direction: column; align-items: center; } .container { width: 100%; max-width: 980px; margin: 20px auto; padding: 20px; background-color: var(–white); border-radius: 8px; box-shadow: 0 2px 10px var(–shadow-color); box-sizing: border-box; } header { background-color: var(–primary-color); color: var(–white); padding: 20px 0; text-align: center; width: 100%; margin-bottom: 20px; } header h1 { margin: 0; font-size: 2.5em; font-weight: 600; } h2, h3 { color: var(–primary-color); margin-top: 1.5em; margin-bottom: 0.5em; } .loan-calc-container, .article-section { margin-bottom: 30px; padding: 25px; border: 1px solid var(–border-color); border-radius: 8px; background-color: var(–white); } .loan-calc-container h2 { text-align: center; margin-top: 0; margin-bottom: 20px; color: var(–primary-color); } .input-group { margin-bottom: 15px; text-align: left; } .input-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(–primary-color); } .input-group input[type="number"], .input-group select { width: calc(100% – 20px); padding: 10px; border: 1px solid var(–border-color); border-radius: 4px; font-size: 1em; margin-bottom: 5px; } .input-group .helper-text { font-size: 0.85em; color: #6c757d; display: block; margin-bottom: 5px; } .input-group .error-message { color: #dc3545; font-size: 0.8em; display: block; min-height: 1.2em; } .button-group { display: flex; justify-content: space-between; margin-top: 20px; flex-wrap: wrap; gap: 10px; } .button-group button { padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer; font-size: 1em; font-weight: 500; transition: background-color 0.3s ease; } .btn-calculate { background-color: var(–primary-color); color: var(–white); } .btn-calculate:hover { background-color: #003366; } .btn-reset { background-color: #6c757d; color: var(–white); } .btn-reset:hover { background-color: #5a6268; } .btn-copy { background-color: var(–success-color); color: var(–white); } .btn-copy:hover { background-color: #218838; } #result { margin-top: 30px; padding: 20px; background-color: var(–primary-color); color: var(–white); border-radius: 8px; text-align: center; box-shadow: inset 0 1px 5px rgba(0,0,0,0.2); transition: background-color 0.3s ease; } #result h3 { margin: 0 0 10px 0; color: var(–white); font-size: 1.4em; } #result .primary-result-value { font-size: 2.5em; font-weight: bold; margin-bottom: 5px; display: block; } #result .unit { font-size: 1.2em; opacity: 0.9; } #result .formula-explanation { font-size: 0.9em; margin-top: 15px; padding-top: 10px; border-top: 1px solid rgba(255, 255, 255, 0.3); opacity: 0.8; } .intermediate-results { display: flex; flex-wrap: wrap; justify-content: space-around; margin-top: 20px; gap: 15px; } .intermediate-result-item { background-color: var(–background-color); padding: 15px; border-radius: 6px; text-align: center; flex: 1; min-width: 150px; border: 1px solid var(–border-color); } .intermediate-result-item strong { display: block; font-size: 1.1em; color: var(–primary-color); margin-bottom: 5px; } .intermediate-result-item span { font-size: 1.3em; font-weight: bold; } table { width: 100%; border-collapse: collapse; margin-top: 20px; margin-bottom: 20px; } th, td { padding: 10px; text-align: left; border: 1px solid var(–border-color); } thead { background-color: var(–primary-color); color: var(–white); } tbody tr:nth-child(even) { background-color: var(–background-color); } caption { font-size: 1.1em; font-weight: bold; margin-bottom: 10px; color: var(–primary-color); caption-side: top; text-align: left; } canvas { margin-top: 20px; display: block; background-color: var(–white); border-radius: 8px; box-shadow: 0 2px 10px var(–shadow-color); } .article-section { background-color: var(–white); padding: 30px; text-align: left; } .article-section h2 { margin-top: 0; border-bottom: 2px solid var(–primary-color); padding-bottom: 5px; margin-bottom: 1em; } .article-section h3 { margin-top: 1.5em; color: var(–primary-color); } .article-section p { margin-bottom: 1.2em; } .article-section ul, .article-section ol { margin-left: 20px; margin-bottom: 1.2em; } .article-section li { margin-bottom: 0.5em; } .faq-item { margin-bottom: 15px; border-bottom: 1px dashed var(–border-color); padding-bottom: 10px; } .faq-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; } .faq-item strong { color: var(–primary-color); cursor: pointer; display: block; margin-bottom: 5px; } .faq-item p { margin-bottom: 0; display: none; } .faq-item.active p { display: block; } .internal-links-section { background-color: var(–white); padding: 30px; border-radius: 8px; box-shadow: 0 2px 10px var(–shadow-color); margin-top: 30px; } .internal-links-section h3 { text-align: center; margin-top: 0; color: var(–primary-color); margin-bottom: 20px; } .internal-links-section ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; } .internal-links-section li { background-color: var(–background-color); padding: 10px 15px; border-radius: 5px; border: 1px solid var(–border-color); transition: background-color 0.3s ease; } .internal-links-section a { text-decoration: none; color: var(–primary-color); font-weight: 500; } .internal-links-section li:hover { background-color: var(–border-color); } footer { text-align: center; padding: 20px; margin-top: 30px; font-size: 0.9em; color: #6c757d; width: 100%; } @media (max-width: 768px) { .container { margin: 10px; padding: 15px; } header h1 { font-size: 1.8em; } .button-group { flex-direction: column; align-items: center; } .button-group button { width: 80%; margin-bottom: 10px; } .intermediate-results { flex-direction: column; } .intermediate-result-item { width: 100%; } }

How to Calculate Blood Volume by Weight

Blood Volume Calculator

Estimate your total blood volume based on your body weight. This is a crucial metric for medical professionals.

Enter your weight in kilograms (kg).
Male Female Select biological sex for a more accurate estimate.

Estimated Total Blood Volume

Liters
The average blood volume is approximately 7-8% of body weight for males and 6-7% for females. This calculator uses an average of 7.5% for males and 6.5% for females.
Percentage Used %
Blood Volume (Low Estimate) L
Blood Volume (High Estimate) L
Blood Volume vs. Weight by Biological Sex
Blood Volume by Body Weight Categories
Body Weight Category (kg) Estimated Blood Volume (Liters)
< 50 kg ~ 3.25 – 3.75 L
50 – 70 kg ~ 3.25 – 4.9 L
70 – 90 kg ~ 4.55 – 6.3 L
> 90 kg ~ 5.85 – 7.2 L

What is Blood Volume Calculation by Weight?

Understanding how to calculate blood volume by weight is a fundamental concept in physiology and medicine. Blood volume, also known as total blood volume (TBV), refers to the total amount of blood circulating within an individual's body at any given time. It is typically measured in liters (L) and is a critical indicator of a person's overall health, hydration status, and physiological condition. The most common and practical method for estimating an individual's blood volume is by using their body weight as the primary factor. This approach acknowledges the strong correlation between body mass and the circulatory system's capacity.

Who should use it: This calculation is primarily of interest to healthcare professionals, medical students, researchers, and individuals seeking to understand their physiological parameters more deeply. It can be useful in scenarios like pre-operative assessments, understanding potential blood loss during surgery or trauma, or in research studies related to cardiovascular health and fluid balance.

Common misconceptions: A common misconception is that blood volume is a fixed quantity. In reality, blood volume can fluctuate based on hydration, altitude, physical activity, and various medical conditions. Another misconception is that it's a simple ratio for everyone; however, biological sex and body composition play significant roles, necessitating different estimation percentages. This emphasizes why a simple weight-to-volume ratio needs nuance when discussing how to calculate blood volume by weight.

Blood Volume by Weight Formula and Mathematical Explanation

Calculating blood volume by weight relies on established physiological ratios that link body mass to the circulatory system's size. The general principle is that a larger body mass requires a larger circulatory volume to transport oxygen and nutrients efficiently.

The formula used in our calculator provides a range and an average based on widely accepted percentages:

  • For adult males, blood volume is typically estimated to be between 7% and 8% of total body weight.
  • For adult females, blood volume is typically estimated to be between 6% and 7% of total body weight.

Our calculator simplifies this by using an average percentage for each biological sex:

  • Average Percentage for Males: 7.5%
  • Average Percentage for Females: 6.5%

The core calculation is:

Estimated Blood Volume (Liters) = Body Weight (kg) × Percentage (as decimal)

To provide a practical range, we also calculate:

  • Low Estimate (Liters) = Body Weight (kg) × Lower Percentage (as decimal)
  • High Estimate (Liters) = Body Weight (kg) × Higher Percentage (as decimal)

Variable Explanations

Here's a breakdown of the variables involved:

Variables in Blood Volume Calculation
Variable Meaning Unit Typical Range / Value
Body Weight The total mass of an individual. Kilograms (kg) Variable (e.g., 40 – 150 kg for adults)
Biological Sex Categorical variable (Male/Female) influencing the standard percentage. Category Male, Female
Percentage Used The specific percentage of body weight used for the primary calculation (e.g., 7.5% for males, 6.5% for females). % 6.5% – 7.5% (or adjusted based on sex)
Lower Percentage The lower bound of the typical blood volume percentage range (e.g., 6% for females, 7% for males). % 6% – 7%
Higher Percentage The upper bound of the typical blood volume percentage range (e.g., 7% for females, 8% for males). % 7% – 8%
Estimated Blood Volume The calculated total volume of blood in the body. Liters (L) Calculated value based on inputs
Blood Volume (Low Estimate) The lower end of the estimated blood volume range. Liters (L) Calculated value
Blood Volume (High Estimate) The upper end of the estimated blood volume range. Liters (L) Calculated value

Practical Examples (Real-World Use Cases)

Example 1: A Healthy Adult Male

Scenario: A 35-year-old male weighs 80 kg. He is undergoing a routine check-up, and his physician wants to estimate his total blood volume.

Inputs:

  • Body Weight: 80 kg
  • Biological Sex: Male

Calculation using calculator's average:

  • Percentage Used (Male): 7.5%
  • Estimated Blood Volume = 80 kg * 0.075 = 6.0 Liters

Calculation for range:

  • Low Estimate = 80 kg * 0.07 = 5.6 Liters
  • High Estimate = 80 kg * 0.08 = 6.4 Liters

Interpretation: For an 80 kg adult male, the estimated total blood volume is approximately 6.0 liters, with a likely range between 5.6 and 6.4 liters. This information is valuable for assessing fluid status and potential risks during medical procedures.

Example 2: A Pregnant Adult Female

Scenario: A 28-year-old female, who is 30 weeks pregnant, weighs 65 kg. Pregnant individuals often experience an increase in blood volume.

Inputs:

  • Body Weight: 65 kg
  • Biological Sex: Female

Calculation using calculator's average:

  • Percentage Used (Female): 6.5%
  • Estimated Blood Volume = 65 kg * 0.065 = 4.225 Liters

Calculation for range:

  • Low Estimate = 65 kg * 0.06 = 3.9 Liters
  • High Estimate = 65 kg * 0.07 = 4.55 Liters

Interpretation: For a 65 kg female, the estimated blood volume is around 4.23 liters. It's important to note that during pregnancy, blood volume can increase by up to 50%. While this calculator provides a baseline, a healthcare provider would consider the physiological changes of pregnancy, potentially indicating a higher actual volume than this standard calculation suggests. This highlights the importance of context when using standard how to calculate blood volume by weight formulas.

How to Use This Blood Volume by Weight Calculator

Our interactive Blood Volume by Weight Calculator is designed for simplicity and accuracy. Follow these steps to get your estimated blood volume:

  1. Enter Your Body Weight: Locate the "Body Weight" input field. Enter your current weight in kilograms (kg). Ensure you use the correct unit as specified.
  2. Select Biological Sex: Choose your biological sex (Male or Female) from the dropdown menu. This selection adjusts the percentage used in the calculation, as typical blood volume ratios differ between sexes.
  3. View Results: Once you have entered your weight and selected your sex, the calculator will automatically update and display your results in real-time.
    • Primary Result: The main section shows your estimated total blood volume in liters.
    • Intermediate Values: You'll also see the specific percentage of body weight used for the calculation, along with a low and high estimate to represent the typical range.
  4. Understand the Formula: A brief explanation of the formula used is provided below the primary result. It clarifies that blood volume is estimated as a percentage of body weight, with variations for biological sex.
  5. Analyze the Table and Chart: The accompanying table and chart provide visual context and comparisons for different weight categories and how blood volume scales with weight.
  6. Use the Buttons:
    • Reset Defaults: Click this button to revert all input fields to their original default values.
    • Copy Results: This button allows you to easily copy the primary result, intermediate values, and key assumptions (like the percentage used) to your clipboard for external use.

How to Read Results

The primary result is your estimated total blood volume in liters. The low and high estimates provide a probable range. For instance, if the calculator shows a primary result of 5.0 L with a range of 4.8 L to 5.2 L, it means your estimated blood volume is around 5.0 liters, and it's highly likely to fall between 4.8 and 5.2 liters based on standard physiological averages.

Decision-Making Guidance

While this calculator provides an estimate, it's crucial to consult a healthcare professional for medical decisions. This tool is for informational purposes. A doctor can provide a definitive assessment based on a comprehensive physical examination, medical history, and potentially laboratory tests. For example, if you are preparing for surgery, discussing your estimated blood volume with your surgeon can help them plan for potential blood loss and transfusion needs. Understanding how to calculate blood volume by weight empowers you with preliminary knowledge for these discussions.

Key Factors That Affect Blood Volume Results

While body weight and biological sex are the primary drivers in our calculator, several other physiological and environmental factors can influence an individual's actual total blood volume (TBV). These factors explain why the calculated estimate is a guideline rather than an absolute measure.

  • Body Composition (Muscle vs. Fat): Muscle tissue is more vascularized than adipose (fat) tissue. Therefore, individuals with higher muscle mass relative to their weight may have a slightly higher blood volume than those with a similar weight but a higher body fat percentage. Our calculator uses total body weight, which averages these effects.
  • Age: Blood volume as a percentage of body weight tends to decrease slightly with age. Infants and children have a higher blood volume percentage than adults, while older adults may have a slightly lower percentage. Our calculator's percentages are generally standardized for adults.
  • Hydration Status: Dehydration can temporarily reduce plasma volume, thus lowering the total blood volume. Conversely, overhydration can temporarily increase it. This calculation assumes a normal hydration state.
  • Pregnancy: As mentioned, blood volume significantly increases during pregnancy to support the growing fetus and placenta. This increase can be substantial (up to 50%), making standard calculations less accurate for pregnant individuals without specific adjustments.
  • Altitude: Acclimatization to high altitudes can lead to an increase in red blood cell production and, consequently, a slight increase in total blood volume over time.
  • Medical Conditions: Various diseases can affect blood volume. Conditions like severe anemia, kidney disease, heart failure, or certain endocrine disorders can lead to either an increase (e.g., fluid overload in heart failure) or decrease (e.g., chronic blood loss in anemia) in blood volume.
  • Medications: Certain medications, particularly diuretics, can impact fluid balance and, consequently, blood volume.
  • Genetics: Individual genetic factors can play a subtle role in determining the exact size and capacity of the circulatory system.

These factors underscore that while our calculator provides a good estimate for how to calculate blood volume by weight, clinical assessments require a more nuanced approach.

Frequently Asked Questions (FAQ)

Q1: Is blood volume the same as blood type?

No, blood volume refers to the quantity of blood in your body, while blood type (like A, B, AB, O, Rh factor) refers to the specific antigens present on your red blood cells. They are distinct biological characteristics.

Q2: How much blood can a person safely donate?

Typically, a standard blood donation involves about 500 ml (0.5 L). This represents a small fraction of total blood volume for most adults and is well within the body's capacity to replenish.

Q3: Can I calculate my blood volume without knowing my weight?

Our calculator specifically requires weight. While other methods exist (like using height and gender, or more complex formulas), weight is the most common and practical proxy for estimating blood volume. Without weight, an accurate estimate using this method is not possible.

Q4: Why is blood volume important for doctors?

Doctors use blood volume estimates to assess a patient's fluid status, estimate potential blood loss during surgery or trauma, plan for blood transfusions, and manage conditions like shock or dehydration.

Q5: Does body fat percentage affect the calculation?

Yes, indirectly. Muscle tissue is more vascular than fat tissue. Therefore, individuals with a higher percentage of muscle mass might have a slightly higher blood volume than someone of the same weight with a higher fat percentage. Our calculator uses total weight, averaging this effect.

Q6: Is the percentage for males always higher than for females?

On average, yes. Adult males typically have a higher percentage of their body weight as blood volume (around 7-8%) compared to adult females (around 6-7%). This difference is largely attributed to variations in body composition and hormonal factors.

Q7: Can children have their blood volume calculated by weight?

Yes, but the percentages used are different. Children generally have a higher blood volume percentage (closer to 8-9% of body weight) than adults. This calculator is primarily designed for adult estimations.

Q8: What happens if my calculated blood volume is very low or very high?

Significant deviations from the estimated range, or experiencing symptoms like dizziness, fatigue, or rapid heart rate, could indicate an issue with fluid balance or blood volume. You should consult a healthcare professional immediately for diagnosis and treatment.

Q9: Does this calculator account for red blood cell count?

No, this calculator estimates total blood volume based on weight and biological sex. It does not factor in specific components like red blood cell count (hematocrit) or plasma volume, which can vary independently and affect blood viscosity and oxygen-carrying capacity.

© 2023 Your Health Resource. All rights reserved. This calculator is for informational purposes only and does not constitute medical advice.

var weightKgInput = document.getElementById('weightKg'); var genderSelect = document.getElementById('gender'); var primaryResultValueSpan = document.getElementById('primaryResultValue'); var percentageUsedSpan = document.getElementById('percentageUsed'); var lowEstimateSpan = document.getElementById('lowEstimate'); var highEstimateSpan = document.getElementById('highEstimate'); var weightKgErrorSpan = document.getElementById('weightKgError'); var chart; var chartData = { labels: [], datasets: [{ label: 'Male Blood Volume (L)', data: [], borderColor: 'var(–primary-color)', backgroundColor: 'rgba(0, 74, 153, 0.2)', fill: true, tension: 0.1 }, { label: 'Female Blood Volume (L)', data: [], borderColor: '#e83e8c', backgroundColor: 'rgba(232, 62, 140, 0.2)', fill: true, tension: 0.1 }] }; function validateInput(inputId, errorElementId, minValue, maxValue) { var input = document.getElementById(inputId); var errorElement = document.getElementById(errorElementId); var value = parseFloat(input.value); errorElement.textContent = "; // Clear previous error if (isNaN(value)) { errorElement.textContent = 'Please enter a valid number.'; return false; } if (value maxValue) { errorElement.textContent = 'Value is too high.'; return false; } return true; } function calculateBloodVolume() { var isValidWeight = validateInput('weightKg', 'weightKgError', 0); if (!isValidWeight) { return; } var weightKg = parseFloat(weightKgInput.value); var gender = genderSelect.value; var malePercentage = 7.5; var femalePercentage = 6.5; var maleLowPercentage = 7.0; var maleHighPercentage = 8.0; var femaleLowPercentage = 6.0; var femaleHighPercentage = 7.0; var percentageUsed; var lowEstimate; var highEstimate; var primaryResult; if (gender === 'male') { percentageUsed = malePercentage; primaryResult = weightKg * (percentageUsed / 100); lowEstimate = weightKg * (maleLowPercentage / 100); highEstimate = weightKg * (maleHighPercentage / 100); } else { // female percentageUsed = femalePercentage; primaryResult = weightKg * (percentageUsed / 100); lowEstimate = weightKg * (femaleLowPercentage / 100); highEstimate = weightKg * (femaleHighPercentage / 100); } primaryResultValueSpan.textContent = primaryResult.toFixed(2); percentageUsedSpan.textContent = percentageUsed.toFixed(1); lowEstimateSpan.textContent = lowEstimate.toFixed(2); highEstimateSpan.textContent = highEstimate.toFixed(2); updateChart(weightKg); updateTable(weightKg); return { primaryResult, lowEstimate, highEstimate, percentageUsed, gender }; } function updateChart(currentWeight) { var weights = [30, 50, 70, 90, 110, 130]; // Sample weights for chart var maleVolumes = []; var femaleVolumes = []; weights.forEach(function(w) { var maleVol = w * 0.075; // Average male percentage var femaleVol = w * 0.065; // Average female percentage maleVolumes.push(maleVol); femaleVolumes.push(femaleVol); }); chartData.labels = weights.map(function(w) { return w + ' kg'; }); chartData.datasets[0].data = maleVolumes; chartData.datasets[1].data = femaleVolumes; // Add a marker for current weight var currentMaleVol = currentWeight * 0.075; var currentFemaleVol = currentWeight * 0.065; chartData.datasets[0].data.push(currentWeight); chartData.datasets[0].data.push(currentMaleVol); // Add point for current weight chartData.datasets[1].data.push(currentWeight); chartData.datasets[1].data.push(currentFemaleVol); // Add point for current weight if (chart) { chart.update(); } else { var ctx = document.getElementById('bloodVolumeChart').getContext('2d'); chart = new Chart(ctx, { type: 'line', data: chartData, options: { responsive: true, maintainAspectRatio: false, scales: { x: { title: { display: true, text: 'Body Weight (kg)' } }, y: { title: { display: true, text: 'Blood Volume (Liters)' }, beginAtZero: true } }, plugins: { tooltip: { callbacks: { label: function(context) { var label = context.dataset.label || "; if (label) { label += ': '; } if (context.parsed.y !== null) { label += context.parsed.y.toFixed(2) + ' L'; } return label; } } } } } }); } } function updateTable(currentWeight) { // The table content is static in this example, but could be dynamically updated // based on weight ranges or specific data points if needed. // For now, it serves as a reference. } function resetCalculator() { weightKgInput.value = '70'; genderSelect.value = 'male'; primaryResultValueSpan.textContent = '–'; percentageUsedSpan.textContent = '–'; lowEstimateSpan.textContent = '–'; highEstimateSpan.textContent = '–'; weightKgErrorSpan.textContent = "; if (chart) { chart.destroy(); chart = null; } // Re-initialize chart with default empty state or call updateChart with defaults updateChart(70); // Update chart with default weight } function copyResults() { var results = calculateBloodVolume(); if (!results) return; var copyText = "Estimated Total Blood Volume:\n"; copyText += "———————————-\n"; copyText += "Primary Result: " + results.primaryResult.toFixed(2) + " Liters\n"; copyText += "Low Estimate: " + results.lowEstimate.toFixed(2) + " Liters\n"; copyText += "High Estimate: " + results.highEstimate.toFixed(2) + " Liters\n"; copyText += "———————————-\n"; copyText += "Key Assumptions:\n"; copyText += "- Body Weight: " + parseFloat(weightKgInput.value).toFixed(1) + " kg\n"; copyText += "- Biological Sex: " + results.gender.charAt(0).toUpperCase() + results.gender.slice(1) + "\n"; copyText += "- Percentage Used: " + results.percentageUsed.toFixed(1) + "%\n"; copyText += "———————————-\n"; copyText += "Formula: Blood Volume = Body Weight (kg) × Percentage (as decimal)\n"; navigator.clipboard.writeText(copyText).then(function() { // Success feedback can be added here, e.g., a temporary message console.log('Results copied to clipboard'); }).catch(function(err) { console.error('Failed to copy results: ', err); // Fallback for older browsers or specific environments var textArea = document.createElement("textarea"); textArea.value = copyText; textArea.style.position = "fixed"; // Avoid scrolling to bottom document.body.appendChild(textArea); textArea.focus(); textArea.select(); try { var successful = document.execCommand('copy'); var msg = successful ? 'successful' : 'unsuccessful'; console.log('Fallback: Copying text command was ' + msg); } catch (err) { console.error('Fallback: Oops, unable to copy', err); } document.body.removeChild(textArea); }); } function toggleFaq(element) { var faqItem = element.closest('.faq-item'); faqItem.classList.toggle('active'); } // Initial calculation and chart render on page load document.addEventListener('DOMContentLoaded', function() { calculateBloodVolume(); updateChart(parseFloat(weightKgInput.value)); // Render chart with initial values });

Leave a Comment