#include <iostream>
using namespace std;

class A {
	
	struct  {
		int a;
		char b;
	private:
		bool c;
	} s;
	
	A() : s ({ 3, 'c' }) {}
	
};

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