@ -0,0 +1,14 @@
<?php
$i = 0;
$sum = 0;
for ($i; $i < 1000; ++$i) {
if ($i % 3 == 0 or $i % 5 == 0) {
$sum = $sum + $i;
}
echo "\n" . $sum . "\n";
?>
@ -0,0 +1,3 @@
echo("Hello\n");
The note is not visible to the blocked user.