<html>
<head>
<title>JS Projects- Basic </title>
<script>
let num1 = Math.floor(Math.random() * 100);
let num2 = Math.floor(Math.random() * 100);
let sum = num1 + num2;
alert(num1 + " + " + num2 + " = " + sum);
</script>
</head>
<body>
</body>
</html>