#! /usr/bin/python
def negyzet(n):
  "Negyzetre emel"
  return n*n
  
for i in range(5):
  print negyzet(i)
    