That guy is such a square

It seems Bert is a bit of a maths fan! He loves square numbers so much that he decided to write a python program to print out the first 100 of them. He managed to write some of the code but he got stuck with the while loop. Your task is simple. Finish off the while loop.
x = 1
while :
print "the square of ", x, "is", x * x
You need to log in or create an account to submit code!
Output: (clear)











