<?php $i=5; $j=8; echo "Value of i, j is:", $i," ",$j; $i+=$j; $j=$i-$j; $i+=$j; echo "Value of i, j is:", $i," ",$j; ?>
Standard input is empty
Value of i, j is:5 8Value of i, j is:18 5
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!