/* * Hacking bonds */ class bond { public: int first, second; bond (int f, int s) { first = f; second = s; } };