Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save LESTADru/8650954 to your computer and use it in GitHub Desktop.
Save LESTADru/8650954 to your computer and use it in GitHub Desktop.
сложение вводимых чисел
<!DOCTYPE html>
<html>
<head>44
<title></title>
</head>
<body>
<script>
var x = +prompt('Введите х', "");
var y = +prompt('Введите y', "");
alert(x+y);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment