#!/usr/bin/python
import math
b=math.e**(1j*math.pi) 	#e^{iz}
print '%.2f+ %.2fi' % (b.real, b.imag) 







