#include <iostream>
struct __attribute__((__packed__)) mystruct_A
{
   char a;
   int b;
   char c;
}x;
int main()
{
	std::cout<<sizeof(x)<<'\n';
}
