OneCompiler

Exams_r_near

100
<html> <head> <title>TODO supply a title</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> <body> <script> alert('Exams are near, have you started preparing for?');
        let a = prompt("Enter first number:");
        let b = prompt("Enter second number:");
        
        a = parseInt(a);
        b = parseInt(b);
        
        let sum = a + b;
        confirm("Sum is " + sum);
    </script>
</body>
</html>