#include <stdio.h>
int main()
{
short sh = 12; // short μ μν λ³μ
int nt = 155; // int μ μν λ³μ
long long on = 1666; // long long μ μν λ³μ
printf("μλ£νμ ν¬κΈ°λ₯Ό μμ보λ μ½λ \n");
printf("1. short : %dbyte, %dbyte \n", sizeof(sh), sizeof sh);
printf("2. int : %dbyte, %dbyte \n", sizeof(nt), sizeof nt);
printf("3. long long: %dbyte, %dbyte \n", sizeof(on), sizeof on);
return 0;
}