#include #include #include using namespace std; class Location { int longitude, latitude; public: Location() {} // parameterized constructor Location(int lg, int lt) { longitude = lg; latitude = lt; } void show() { cout << "Longitude = " <show(); cout<< endl <<"After applying overloaded ++ operator on Location 1"<show(); Location p2(30, 40); cout<< endl <<"Coordinates for Location 2 :" << endl; p2.show(); cout<< endl <<"After applying overloaded -- operator on Location 2"<