Sanacom Corp

Sanacom CorpSanacom CorpSanacom Corp
Home
Contact Us
Service Appointment
Our Services
Test

Sanacom Corp

Sanacom CorpSanacom CorpSanacom Corp
Home
Contact Us
Service Appointment
Our Services
Test
More
  • Home
  • Contact Us
  • Service Appointment
  • Our Services
  • Test
  • Sign In
  • Create Account

  • Bookings
  • My Account
  • Signed in as:

  • filler@godaddy.com


  • Bookings
  • My Account
  • Sign out

Signed in as:

filler@godaddy.com

  • Home
  • Contact Us
  • Service Appointment
  • Our Services
  • Test

Account


  • Bookings
  • My Account
  • Sign out


  • Sign In
  • Bookings
  • My Account

Create Account

By creating an account, you may receive newsletters or promotions.

Already have an account? Sign in

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Copyright © 2025 Sanacom - All Rights Reserved.

  • Privacy Policy
  • Terms and Conditions

This website uses cookies.

<html>

  <head>

    <script>

      function calculate() {

        var num1 = parseFloat(document.getElementById("num1").value);

        var num2 = parseFloat(document.getElementById("num2").value);

        var operator = document.getElementById("operator").value;

        var result;


        if (operator == "+") {

          result = num1 + num2;

        } else if (operator == "-") {

          result = num1 - num2;

        } else if (operator == "*") {

          result = num1 * num2;

        } else if (operator == "/") {

          result = num1 / num2;

        }


        document.getElementById("result").value = result;

      }

    </script>

  </head>

  <body>

    <input type="text" id="num1">

    <select id="operator">

      <option value="+">+</option>

      <option value="-">-</option>

      <option value="*">*</option>

      <option value="/">/</option>

    </select>

    <input type="text" id="num2">

    <button onclick="calculate()">Calculate</button>

    <br><br>

    Result: <input type="text" id="result">

  </body>

</html>


Accept