        private void Second_Click(object sender, EventArgs e)
        {
            y.Real = Int32.Parse(textBox1.Text);
            y.Imaginary = Int32.Parse(textBox2.Text);
            textBox1.Clear();
            textBox2.Clear();
            statusLabel.Text = "Second Complex number is : " + x;
        }
