#include <stdio.h>

struct example {
    struct { int a, b; };
    int c;
};

int main()
{
    struct example e = { {1, 2}, 3};
    printf("%d %d %d\n", e.a, e.b, e.c);
}
