// Structure to handle complex numbers
struct complex
{
  float re;    
  float im;    
} x, y;        // Declare x and y of type complex