#include using namespace std; class Complex { public: int real1,real2,img1,img2,sumr,sumi; Complex() { real1 = 0; real2 = 0; img1 = 0; img2 = 0; sumi=0; sumr=0; } void getnums() { cin>>real1>>img1>>real2>>img2; } void addcomplex() { sumr = real1+real2; sumi = img1+img2; } void displaycomplex() { cout<