/******************************************************************************
Online C Compiler.
Code, Compile, Run and Debug C program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <stdio.h>
struct A {
int a;
short b;
char c;
short d;
};
int main()
{
printf("%ld", sizeof(struct A));
return 0;
}