Skip to content

Instantly share code, notes, and snippets.

@abap34
Last active May 7, 2020 23:56
Show Gist options
  • Save abap34/8fdad97a17a00d4cee9fd293528b023e to your computer and use it in GitHub Desktop.
Save abap34/8fdad97a17a00d4cee9fd293528b023e to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<body>
<script>
var a = Number(prompt("a:"))
var b = Number(prompt("b:"))
for (var r = a % b; r != 0; r = a % b) {
a = b
b = r
}
document.write(b)
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment