<html>
<body>
<p>A typical arithmetic operation takes two numbers and produces a new number.</p>
<p id="demo"></p>
<script>
var x = 100 + 50;
document.getElementById("demo").innerHTML = x;
</script>
</body>
<!-- Mirrored from www.w3schools.com/js/tryit.asp?filename=tryjs_arithmetic_operation by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 02:39:28 GMT -->
</html>