#include <iostream>
using namespace std;

struct foo {
	string bar;	
}
A{"A"},
B{"B"};

int main() {
	cout << A.bar << " " << B.bar << endl;
}