#include <stdio.h>

int x;

int main(){
	struct x {int a; int b;};
	printf("%d", sizeof(x));
	return 0;
}