#include <stdio.h>
#include <stddef.h>
int main(void) {
struct s {
	char c;
	double d;
} x;
struct a {
	double d;
	char c;
} y;
	printf("%lu %lu\n",(unsigned long)sizeof x,(unsigned long)sizeof y);
	printf("%lu %lu",(unsigned long)offsetof(struct s,d),(unsigned long)offsetof(struct a,c));
	return 0;
}
