#include <stdio.h>
typedef struct S_ { short f[3]; } S __attribute__ ((aligned (8)));

S test[16]={};

int main(void) {
	printf("%zu\n",sizeof(test));
	// your code goes here
	return 0;
}
