#include <stdio.h>

struct { 
char  *a; short b; double c; char d; float e; char f; long  g; int h; 
} rec; 

struct { 
long  g; char  *a; double c; int h; float e; short b; char d;  char f;  
} rec2; 

int main() {
	
int s = sizeof(rec);
printf("%i\n",s);

int s2 = sizeof(rec2);
printf("%i",s2);

return 0;
}
