#!/usr/bin/python

print "Content-type: text/plain\n\n";

i = 0

while i < 10:
    print i * i
    i = i + 1
