Ideal Weight Range Calculator

Ideal Weight Range Calculator & Guide :root { –primary-color: #004a99; –success-color: #28a745; –background-color: #f8f9fa; –text-color: #333; –border-color: #ccc; –shadow-color: rgba(0, 0, 0, 0.1); –accent-color: #e9ecef; } body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: var(–background-color); color: var(–text-color); margin: 0; padding: 0; display: flex; flex-direction: column; align-items: center; line-height: 1.6; } .container { width: 100%; max-width: 1000px; margin: 20px auto; padding: 20px; background-color: #fff; border-radius: 8px; box-shadow: 0 2px 10px var(–shadow-color); } header { background-color: var(–primary-color); color: #fff; padding: 20px 0; text-align: center; width: 100%; } header h1 { margin: 0; font-size: 2.5em; font-weight: 600; } main { padding: 20px; } .calculator-wrapper { background-color: var(–background-color); padding: 30px; border-radius: 8px; box-shadow: inset 0 1px 3px var(–shadow-color); margin-bottom: 40px; } .calculator-wrapper h2 { text-align: center; color: var(–primary-color); margin-top: 0; margin-bottom: 30px; font-size: 2em; } .loan-calc-container { display: flex; flex-direction: column; gap: 20px; } .input-group { display: flex; flex-direction: column; gap: 8px; } .input-group label { font-weight: bold; color: var(–primary-color); } .input-group input, .input-group select { padding: 12px 15px; border: 1px solid var(–border-color); border-radius: 5px; font-size: 1em; transition: border-color 0.3s ease; } .input-group input:focus, .input-group select:focus { border-color: var(–primary-color); outline: none; } .input-group .helper-text { font-size: 0.85em; color: #666; } .error-message { color: #dc3545; font-size: 0.9em; margin-top: 5px; display: none; } .button-group { display: flex; gap: 15px; margin-top: 20px; justify-content: center; flex-wrap: wrap; } button { padding: 12px 25px; border: none; border-radius: 5px; font-size: 1em; font-weight: 600; cursor: pointer; transition: background-color 0.3s ease, transform 0.2s ease; } .btn-primary { background-color: var(–primary-color); color: #fff; } .btn-primary:hover { background-color: #003366; transform: translateY(-2px); } .btn-secondary { background-color: var(–accent-color); color: var(–primary-color); border: 1px solid var(–primary-color); } .btn-secondary:hover { background-color: #dcdcdc; transform: translateY(-2px); } .btn-reset { background-color: #ffc107; color: #212529; } .btn-reset:hover { background-color: #e0a800; transform: translateY(-2px); } .results-section { margin-top: 30px; padding: 25px; background-color: var(–primary-color); color: #fff; border-radius: 8px; text-align: center; box-shadow: 0 2px 8px var(–shadow-color); } .results-section h3 { margin-top: 0; font-size: 1.8em; color: #fff; } .primary-result { font-size: 2.5em; font-weight: bold; margin: 15px 0; display: inline-block; padding: 10px 20px; background-color: var(–success-color); border-radius: 5px; box-shadow: 0 2px 6px rgba(0,0,0,0.2); } .intermediate-results { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 25px; font-size: 1.1em; } .intermediate-results div { background-color: rgba(255, 255, 255, 0.15); padding: 10px 15px; border-radius: 5px; } .intermediate-results span { font-weight: bold; display: block; font-size: 1.3em; } .formula-explanation { font-size: 0.95em; margin-top: 20px; opacity: 0.9; } #chartContainer { width: 100%; max-width: 700px; margin: 40px auto; background-color: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 10px var(–shadow-color); text-align: center; } #chartContainer h3 { color: var(–primary-color); margin-top: 0; font-size: 1.8em; } canvas { display: block; margin: 20px auto; } table { width: 100%; border-collapse: collapse; margin-top: 30px; box-shadow: 0 2px 8px var(–shadow-color); } thead { background-color: var(–primary-color); color: #fff; } th, td { padding: 12px 15px; text-align: left; border: 1px solid var(–border-color); } th { font-weight: bold; text-transform: uppercase; font-size: 1.1em; } tbody tr:nth-child(even) { background-color: var(–accent-color); } .article-content { width: 100%; max-width: 960px; margin: 40px auto; padding: 0 20px; } .article-content h2 { color: var(–primary-color); font-size: 2em; margin-top: 40px; border-bottom: 2px solid var(–primary-color); padding-bottom: 8px; } .article-content h3 { color: var(–primary-color); font-size: 1.6em; margin-top: 30px; } .article-content p { margin-bottom: 15px; } .article-content ul, .article-content ol { margin-bottom: 15px; padding-left: 25px; } .article-content li { margin-bottom: 8px; } .article-content strong { color: var(–primary-color); } a { color: var(–primary-color); text-decoration: none; font-weight: 600; } a:hover { text-decoration: underline; } .faq-list .question { font-weight: bold; color: var(–primary-color); margin-bottom: 5px; cursor: pointer; display: block; position: relative; padding-left: 25px; } .faq-list .question::before { content: '+'; position: absolute; left: 0; font-weight: bold; color: var(–primary-color); } .faq-list .question.active::before { content: '-'; } .faq-list .answer { margin-left: 25px; margin-bottom: 15px; display: none; padding-left: 10px; border-left: 2px solid var(–primary-color); } .internal-links-list { list-style: none; padding: 0; } .internal-links-list li { margin-bottom: 15px; padding: 10px; background-color: var(–accent-color); border-radius: 5px; } .internal-links-list a { font-size: 1.1em; } .internal-links-list p { font-size: 0.9em; margin-top: 5px; color: #555; } footer { text-align: center; padding: 20px; margin-top: 40px; width: 100%; background-color: var(–text-color); color: #fff; font-size: 0.9em; } @media (max-width: 768px) { .container { margin: 10px; padding: 15px; } header h1 { font-size: 1.8em; } .calculator-wrapper h2 { font-size: 1.5em; } .primary-result { font-size: 2em; } .intermediate-results div { width: 100%; text-align: center; } .button-group { flex-direction: column; align-items: center; } .article-content { padding: 0 10px; } .article-content h2 { font-size: 1.6em; } .article-content h3 { font-size: 1.3em; } }

Ideal Weight Range Calculator

Calculate Your Ideal Weight Range

Enter your height in centimeters (cm).
Enter your current weight in kilograms (kg).
Enter your age in years.
Male Female Select your gender for more accurate calculations.

Your Ideal Weight Range

BMI
kg (Lower)
kg (Upper)

The ideal weight range is typically estimated using BMI (Body Mass Index). A healthy BMI range is generally considered to be between 18.5 and 24.9. This calculator determines your healthy weight range based on your height and these BMI parameters.

Weight Range Visualization

Ideal Weight Range Components
Metric Value Unit
Height cm
Gender
Age Years
Current BMI kg/m²
Healthy BMI Range 18.5 – 24.9 kg/m²
Ideal Weight Lower Bound kg
Ideal Weight Upper Bound kg

What is an Ideal Weight Range Calculator?

An ideal weight range calculator is a tool designed to estimate a healthy weight range for an individual based on their physical characteristics, primarily height, and sometimes age and gender. It's not about pinpointing a single "perfect" weight, but rather defining a spectrum of weights that are generally associated with lower health risks and better overall well-being. This ideal weight range calculator is a valuable starting point for anyone interested in understanding their body composition and making informed decisions about their health.

Who should use it? Anyone concerned about their weight, looking to understand what a healthy weight looks like for them, or seeking to set realistic weight management goals can benefit from an ideal weight range calculator. It's useful for individuals who are underweight, overweight, or simply curious about maintaining a healthy weight. It can also be a helpful tool for healthcare professionals to discuss weight goals with their patients.

Common misconceptions: A prevalent misconception is that there is one single "ideal" weight. In reality, a range is much more appropriate, acknowledging variations in body composition (muscle vs. fat), bone density, and frame size. Another misconception is that these calculators replace professional medical advice; they are tools for estimation, not diagnosis. The results from an ideal weight range calculator should be discussed with a healthcare provider.

Ideal Weight Range Formula and Mathematical Explanation

The most common method for determining an ideal weight range involves calculating the Body Mass Index (BMI) and then using the standard healthy BMI range to derive the corresponding weight values. The formula relies on a few key variables and established health guidelines.

Step-by-step derivation:

  1. Calculate BMI: The formula for BMI is weight in kilograms divided by height in meters squared.
    BMI = Weight (kg) / (Height (m))^2
  2. Determine Healthy BMI Range: Health organizations generally define a healthy BMI range as 18.5 to 24.9.
  3. Calculate Ideal Weight Range: To find the ideal weight range, we rearrange the BMI formula to solve for weight:
    Weight (kg) = BMI * (Height (m))^2 We then apply the lower and upper bounds of the healthy BMI range to this formula.
    Lower Ideal Weight (kg) = 18.5 * (Height (m))^2
    Upper Ideal Weight (kg) = 24.9 * (Height (m))^2

Note: For calculations, height is converted from centimeters to meters by dividing by 100. For example, 175 cm becomes 1.75 m.

Variable Explanations

Variable Meaning Unit Typical Range
Height The vertical measurement of an individual from the sole of the foot to the top of the head. Centimeters (cm) Varies greatly by age and genetics.
Weight The total mass of an individual. Kilograms (kg) Varies greatly.
Age The length of time an individual has existed since birth. Years Adults (e.g., 18+)
Gender Biological sex, which can influence body composition and metabolism. Category (Male/Female) Male, Female
BMI Body Mass Index, a measure of body fat based on height and weight. kg/m² 18.5 – 24.9 (Healthy)
Ideal Weight Lower Bound The minimum weight considered healthy for an individual's height, based on a BMI of 18.5. Kilograms (kg) Calculated
Ideal Weight Upper Bound The maximum weight considered healthy for an individual's height, based on a BMI of 24.9. Kilograms (kg) Calculated

Practical Examples (Real-World Use Cases)

Example 1: A Young Adult Male

John is a 25-year-old male, 180 cm tall, and weighs 85 kg. He's interested in understanding if his current weight falls within a healthy range.

Inputs:

  • Height: 180 cm
  • Weight: 85 kg
  • Age: 25
  • Gender: Male

Calculation Steps:

  1. Convert height to meters: 180 cm / 100 = 1.80 m
  2. Calculate BMI: 85 kg / (1.80 m * 1.80 m) = 85 / 3.24 ≈ 26.2 kg/m²
  3. Calculate Lower Ideal Weight: 18.5 * (1.80 m * 1.80 m) = 18.5 * 3.24 ≈ 59.94 kg
  4. Calculate Upper Ideal Weight: 24.9 * (1.80 m * 1.80 m) = 24.9 * 3.24 ≈ 80.68 kg

Outputs:

  • Current BMI: 26.2 kg/m²
  • Ideal Weight Range: Approximately 60 kg to 81 kg

Interpretation: John's current weight of 85 kg places him slightly above the healthy BMI range (26.2 kg/m²). His ideal weight range is between 60 kg and 81 kg. He might consider lifestyle changes to reach this range for better health. This ideal weight range calculator result suggests a need for weight management.

Example 2: An Adult Female

Sarah is a 45-year-old female, 165 cm tall, and weighs 55 kg. She wants to ensure her weight is healthy.

Inputs:

  • Height: 165 cm
  • Weight: 55 kg
  • Age: 45
  • Gender: Female

Calculation Steps:

  1. Convert height to meters: 165 cm / 100 = 1.65 m
  2. Calculate BMI: 55 kg / (1.65 m * 1.65 m) = 55 / 2.7225 ≈ 20.2 kg/m²
  3. Calculate Lower Ideal Weight: 18.5 * (1.65 m * 1.65 m) = 18.5 * 2.7225 ≈ 50.37 kg
  4. Calculate Upper Ideal Weight: 24.9 * (1.65 m * 1.65 m) = 24.9 * 2.7225 ≈ 67.79 kg

Outputs:

  • Current BMI: 20.2 kg/m²
  • Ideal Weight Range: Approximately 50 kg to 68 kg

Interpretation: Sarah's current weight of 55 kg falls well within the healthy BMI range (20.2 kg/m²). Her ideal weight range is between 50 kg and 68 kg. She is currently at a healthy weight according to the ideal weight range calculator. Continuing a balanced diet and regular exercise can help her maintain this healthy status.

How to Use This Ideal Weight Range Calculator

Using our ideal weight range calculator is straightforward. Follow these simple steps to get your personalized healthy weight range:

  1. Input Your Height: Enter your height accurately in centimeters (cm). For example, if you are 5 feet 9 inches, that's approximately 175 cm.
  2. Input Your Current Weight: Enter your current weight in kilograms (kg).
  3. Input Your Age: Enter your age in years. While not directly used in the standard BMI formula, age can be a factor in overall health and metabolic considerations, and it's included for potential future enhancements or contextual information.
  4. Select Your Gender: Choose your gender (Male or Female). This is because body composition can differ between sexes, and while BMI doesn't explicitly account for this, it's a common variable in health assessments.
  5. Click 'Calculate': Once all fields are filled, click the 'Calculate' button.

How to read results: The calculator will display:

  • Primary Result: Your ideal weight range in kilograms (kg).
  • Intermediate Values: Your current Body Mass Index (BMI), the lower end of your healthy weight range, and the upper end of your healthy weight range.
  • Chart and Table: A visual representation and a detailed breakdown of the calculated values and the healthy BMI parameters.

Decision-making guidance:

  • If your current weight falls within the calculated range, you are likely at a healthy weight. Continue with healthy lifestyle habits.
  • If your current weight is below the range, consult a healthcare professional about safe weight gain strategies.
  • If your current weight is above the range, consider consulting a doctor or registered dietitian for a personalized weight loss plan. Remember that muscle mass weighs more than fat, so BMI is not the sole indicator of health.

Always remember that this ideal weight range calculator is an estimation tool. For personalized health advice, consult with a qualified healthcare provider. Consider exploring our related tools for a broader perspective on your health metrics.

Key Factors That Affect Ideal Weight Range Results

While the ideal weight range calculator provides a valuable estimate, several factors can influence an individual's actual healthy weight and body composition. It's important to consider these nuances beyond the basic BMI calculation:

  1. Body Composition (Muscle vs. Fat): BMI and the resulting ideal weight range do not differentiate between muscle mass and fat mass. Athletes or individuals with significant muscle mass may have a higher BMI but be perfectly healthy due to low body fat percentage. This is a critical limitation of the ideal weight range calculator.
  2. Bone Density and Frame Size: Individuals with larger bone structures or denser bones might naturally weigh more. The standard BMI calculation doesn't account for skeletal differences.
  3. Age: Metabolic rates can change with age, affecting how the body stores fat and builds muscle. While age isn't a primary input for the standard BMI calculation, it's considered in broader health assessments. An ideal weight range calculator often includes age for contextual awareness.
  4. Genetics: Genetic predispositions can influence body shape, metabolism, and the tendency to gain or lose weight. Some individuals may naturally carry more weight even with healthy habits.
  5. Ethnicity: Research suggests that certain health risks associated with specific BMI levels can vary among different ethnic groups. For instance, some Asian populations may experience increased health risks at lower BMI levels than typically defined.
  6. Medical Conditions and Medications: Various health conditions (like thyroid issues, PCOS) and medications can affect weight, fluid retention, and metabolism, influencing what constitutes a healthy weight for an individual.
  7. Lifestyle Factors (Diet and Exercise): Beyond just weight, the quality of diet and the type/amount of physical activity are crucial indicators of health. A person within the ideal weight range but with a poor diet and sedentary lifestyle may be less healthy than someone slightly outside the range who eats well and exercises regularly.

Understanding these factors helps in interpreting the results from an ideal weight range calculator more holistically, emphasizing that weight is just one piece of the overall health puzzle.

Frequently Asked Questions (FAQ)

What is the difference between ideal weight and healthy weight?
"Ideal weight" often refers to a single, sometimes outdated, calculation. "Healthy weight range" is a more modern and accurate concept, representing a spectrum of weights associated with lower health risks. Our ideal weight range calculator focuses on this range.
Does body fat percentage matter more than BMI?
Body fat percentage is often considered a more direct measure of health risks related to body composition than BMI alone. However, BMI is a widely used screening tool because it's easy to calculate and correlates with health risks for most people. The ideal weight range calculator uses BMI as its primary metric.
Can I use this calculator if I am pregnant or breastfeeding?
No, this calculator is not suitable for pregnant or breastfeeding individuals. Weight needs during these periods are significantly different and require medical guidance.
How often should I recalculate my ideal weight range?
Your ideal weight range itself doesn't change significantly once you've reached adulthood, as it's based on height. However, it's good practice to reassess your current weight and BMI periodically (e.g., annually) using the ideal weight range calculator as part of your routine health check-ups.
What if my current weight is much lower than the ideal range?
Being significantly underweight can also pose health risks. If your weight is substantially below the calculated ideal weight range, it's recommended to consult a healthcare provider to rule out underlying medical conditions and discuss strategies for healthy weight gain.
Does the calculator account for waist circumference?
This specific ideal weight range calculator does not directly use waist circumference. However, waist circumference is another important health indicator, particularly for assessing abdominal obesity, which is linked to cardiovascular disease and type 2 diabetes.
Are there different ideal weight formulas?
Yes, historically there have been various formulas (like the Devine formula, Robinson formula), but BMI is the most widely accepted standard for population-level health assessment and provides a good general range. Our calculator is based on the standard BMI method.
How does gender influence ideal weight?
While the core BMI calculation is the same, men and women tend to have different body compositions (e.g., muscle mass vs. fat mass) and distributions of body fat. The ideal weight range calculator includes gender as a common data point, although the primary calculation relies on height.
© 2023 Your Website Name. All rights reserved. | This tool provides estimates and is not a substitute for professional medical advice.
var canvas = document.getElementById('weightChart'); var ctx = canvas.getContext('2d'); var chart; function initializeChart() { chart = new Chart(ctx, { type: 'bar', data: { labels: ['Current Weight', 'Lower Ideal Weight', 'Upper Ideal Weight'], datasets: [{ label: 'Weight (kg)', data: [0, 0, 0], backgroundColor: [ 'rgba(54, 162, 235, 0.6)', 'rgba(75, 192, 192, 0.6)', 'rgba(75, 192, 192, 0.6)' ], borderColor: [ 'rgba(54, 162, 235, 1)', 'rgba(75, 192, 192, 1)', 'rgba(75, 192, 192, 1)' ], borderWidth: 1 }] }, options: { responsive: true, maintainAspectRatio: true, scales: { y: { beginAtZero: true, title: { display: true, text: 'Weight (kg)' } } }, plugins: { title: { display: true, text: 'Weight Comparison' }, legend: { display: false } } } }); } function updateChart(currentWeight, lowerIdeal, upperIdeal) { if (!chart) { initializeChart(); } chart.data.datasets[0].data = [currentWeight, lowerIdeal, upperIdeal]; chart.data.datasets[0].backgroundColor = [ currentWeight upperIdeal ? 'rgba(255, 99, 132, 0.6)' : 'rgba(54, 162, 235, 0.6)', // Red if outside range, blue if inside 'rgba(75, 192, 192, 0.6)', 'rgba(75, 192, 192, 0.6)' ]; chart.update(); } function calculateIdealWeight() { var heightCm = parseFloat(document.getElementById('height').value); var weightKg = parseFloat(document.getElementById('weight').value); var age = parseFloat(document.getElementById('age').value); var gender = document.getElementById('gender').value; var resultsSection = document.getElementById('resultsSection'); var primaryResultDiv = document.getElementById('primaryResult'); var bmiResultSpan = document.getElementById('bmiResult'); var lowerRangeSpan = document.getElementById('lowerRange'); var upperRangeSpan = document.getElementById('upperRange'); var heightError = document.getElementById('heightError'); var weightError = document.getElementById('weightError'); var ageError = document.getElementById('ageError'); // Clear previous errors heightError.style.display = 'none'; weightError.style.display = 'none'; ageError.style.display = 'none'; var isValid = true; if (isNaN(heightCm) || heightCm <= 0) { heightError.textContent = 'Please enter a valid height in cm.'; heightError.style.display = 'block'; isValid = false; } if (isNaN(weightKg) || weightKg <= 0) { weightError.textContent = 'Please enter a valid weight in kg.'; weightError.style.display = 'block'; isValid = false; } if (isNaN(age) || age 120) { ageError.textContent = 'Please enter a valid age.'; ageError.style.display = 'block'; isValid = false; } if (!isValid) { resultsSection.style.display = 'none'; return; } var heightM = heightCm / 100; var bmi = weightKg / (heightM * heightM); var lowerIdealWeight = 18.5 * (heightM * heightM); var upperIdealWeight = 24.9 * (heightM * heightM); primaryResultDiv.textContent = lowerIdealWeight.toFixed(1) + ' – ' + upperIdealWeight.toFixed(1) + ' kg'; bmiResultSpan.textContent = bmi.toFixed(1); lowerRangeSpan.textContent = lowerIdealWeight.toFixed(1); upperRangeSpan.textContent = upperIdealWeight.toFixed(1); resultsSection.style.display = 'block'; // Update table document.getElementById('tableHeight').textContent = heightCm.toFixed(0); document.getElementById('tableGender').textContent = gender.charAt(0).toUpperCase() + gender.slice(1); document.getElementById('tableAge').textContent = age.toFixed(0); document.getElementById('tableCurrentBMI').textContent = bmi.toFixed(1); document.getElementById('tableLowerWeight').textContent = lowerIdealWeight.toFixed(1); document.getElementById('tableUpperWeight').textContent = upperIdealWeight.toFixed(1); updateChart(weightKg, lowerIdealWeight, upperIdealWeight); } function resetCalculator() { document.getElementById('height').value = "; document.getElementById('weight').value = "; document.getElementById('age').value = "; document.getElementById('gender').value = 'male'; document.getElementById('heightError').style.display = 'none'; document.getElementById('weightError').style.display = 'none'; document.getElementById('ageError').style.display = 'none'; document.getElementById('resultsSection').style.display = 'none'; document.getElementById('primaryResult').textContent = '–'; document.getElementById('bmiResult').textContent = '–'; document.getElementById('lowerRange').textContent = '–'; document.getElementById('upperRange').textContent = '–'; document.getElementById('tableHeight').textContent = '–'; document.getElementById('tableGender').textContent = '–'; document.getElementById('tableAge').textContent = '–'; document.getElementById('tableCurrentBMI').textContent = '–'; document.getElementById('tableLowerWeight').textContent = '–'; updateChart(0, 0, 0); // Reset chart data } function copyResults() { var primaryResult = document.getElementById('primaryResult').textContent; var bmiResult = document.getElementById('bmiResult').textContent; var lowerRange = document.getElementById('lowerRange').textContent; var upperRange = document.getElementById('upperRange').textContent; var height = document.getElementById('tableHeight').textContent; var gender = document.getElementById('tableGender').textContent; var age = document.getElementById('tableAge').textContent; var currentBMI = document.getElementById('tableCurrentBMI').textContent; var healthyBMIRange = document.getElementById('tableHealthyBMIRange').textContent; var lowerWeight = document.getElementById('tableLowerWeight').textContent; var upperWeight = document.getElementById('tableUpperWeight').textContent; var resultsText = "Ideal Weight Range Results:\n\n"; resultsText += "Ideal Weight Range: " + primaryResult + "\n"; resultsText += "Current BMI: " + currentBMI + " kg/m²\n"; resultsText += "Healthy BMI Range: " + healthyBMIRange + " kg/m²\n"; resultsText += "Your Lower Healthy Weight: " + lowerWeight + " kg\n"; resultsText += "Your Upper Healthy Weight: " + upperWeight + " kg\n\n"; resultsText += "Assumptions:\n"; resultsText += "Height: " + height + " cm\n"; resultsText += "Gender: " + gender + "\n"; resultsText += "Age: " + age + " years\n"; // Use a temporary textarea to copy text to clipboard var textArea = document.createElement("textarea"); textArea.value = resultsText; textArea.style.position = "fixed"; // Avoid scrolling to bottom textArea.style.left = "-9999px"; textArea.style.top = "-9999px"; document.body.appendChild(textArea); textArea.focus(); textArea.select(); try { var successful = document.execCommand('copy'); var msg = successful ? 'Results copied!' : 'Copying failed'; alert(msg); // Simple feedback } catch (err) { alert('Failed to copy results.'); } document.body.removeChild(textArea); } function toggleFaq(element) { var answer = element.nextElementSibling; element.classList.toggle('active'); if (answer.style.display === 'block') { answer.style.display = 'none'; } else { answer.style.display = 'block'; } } // Initialize chart on page load window.onload = function() { initializeChart(); // Optional: Set default values or trigger calculation if inputs are pre-filled // calculateIdealWeight(); };

Leave a Comment