#include <iostream>
using namespace std;

struct Foo {
	Foo(const char *s) { cout << "Init " << s << endl; }
};
struct Bar {
	Foo a;
	Foo b;
	Foo c;
	Bar() : c("c"), b("b"), a("a") {
	}
};

int main() {
	Bar b;
	return 0;
}