#include <stdio.h>

struct Empty {};

int main(void) 
{
	printf("%lu\n%lu", sizeof(struct Empty), sizeof(void));	
	return 0;
}
