#include <iostream>
using namespace std;

//#include "B.h"
 
class B;

class A
{
  B b;
  // or
  void do_something(B b) { this.b = b; }
  // or
  B getB() const { return this.b; }
};


int main() {
	// your code goes here
	return 0;
}