class c { public: int r; int i; c(int a = 1, int b = 2) { r = a; i = b; } friend c operator+(c c1, c c2);...........(1) }; c ope