<?php
answer=0;
number=0;
while (answer<100)
{
  number=number+1;
  answer=number^2;
  print answer;
}
echo number;
print "hello???\n";
?>