#include <stdio.h>

struct a;

struct b {
	struct a *ap;
};

struct a {
	struct b *bp;
};

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