static struct {
	int a, b, c, d, e;
} hello;

int main(void) {
	hello.a = hello.b = hello.c = hello.d = hello.e = 1;
	return 0;
}
