Second
Second
int main()
{
complex a,b,c,d;
//cout<<"\n Enter first complex number"<<endl;
cout<<"\n Enter real and imaginary part of first complex number:";
cin>>a;
d=a*b;
cout<<"\n Multiplication is:"<<d<<"\n";
return 0;
}