document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2. function osszeado($a, $b){
  3.     $x = $a + $b;
  4.     echo $x;
  5.     return;
  6. }
  7. $a = 5;
  8. $b = 3;
  9.  
  10. osszeado($a,$b);
  11. ?>
');