fork download
  1. <?php
  2. $a = "The PHP Add/Multiply Program.";
  3. print($a . "\n");
  4. $b = 25;
  5. $c = 25;
  6. $d = ($b + $c);
  7. print($b . " " . $c . " " . $d . "\n");
  8. $e = 45;
  9. $f = 45;
  10. $g = ($e * $f);
  11. print($e . " " . $f . " " . $g . "\n");
Success #stdin #stdout 0.02s 25836KB
stdin
1
2
10
42
11
stdout
The PHP Add/Multiply Program.
25 25 50
45 45 2025