Guest User

Untitled

a guest
Feb 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. function pyxis (event) {
  2. function caelum(x) { return 2*x; }
  3. function grus(x) { return 4*x; }
  4. function delphinus(x) { return 8*x; }
  5. function norma(x) { return 5*x; }
  6. function canis(x) { return 7*x; }
  7. function virgo(x) { return 3*x; }
  8. function pavo(x) { return 9*x; }
  9. function volans(x) { return 6*x; }
  10.  
  11. var apus=42, leo=1+delphinus(6+7),
  12. eridanus=grus(caelum(caelum(9))),
  13. circinus=grus(caelum(caelum(4+8))),
  14. columba=3+pavo(8), tucana=8+pavo(3),
  15. dorado=1+caelum(3+grus(virgo(9))),
  16. corvus=volans(1+virgo(1+caelum(6))),
  17. pisces=2+virgo(2+volans(5+7));
  18.  
  19. var ursa=eridanus*circinus+leo*pisces+corvus*dorado+tucana*columba+0;
  20.  
  21. return ursa;
  22. }
  23.  
  24. var arr = document.getElementsByTagName('form');
  25. for(var i = 0; i < arr.length; i++) {
  26. var input = document.createElement('input');
  27. input.id = "cygnus";
  28. input.type = "hidden";
  29. input.name = "pyxis";
  30. input.value = pyxis();
  31. arr[i].appendChild(input);
  32. }
Add Comment
Please, Sign In to add comment