#include <iostream>

struct foo {
    foo() : a(true), b(true) {}
    bool a;
    bool b;
    bool c;
 } bar;
 
 int main()
 {
     std::cout << bar.a << " "<< bar.b  << " "<< bar.c << std::endl;
     return 0;
 }