#!/usr/bin/python
j=1  
a=1.1j
while j<7:
  b=a**j
  print '%7.2f %7.2f' % (b.real, b.imag) 
  j=j+1

