// author: Sakhar Alkhereyf
#include <stdio.h>
struct A{
int x;
char z;
short y;
char w;
};
struct B{
int x;
char z;
char w;
short y;
};
int main()
{
printf("Hello, World!\n");
printf("size of A: %d\n", sizeof(struct A));
printf("size of B: %d\n", sizeof(struct B));
//
return 0;
}