<script>
var x,y,z; ⁄ ⁄declare vaariables
x=10;
y=5;
z=x-y;
document·write("Addition of "+ x +"-"+ y+"="+z+"<br/>");

</script>
Addition of 10-5=5