#include <stdlib.h>
#include <stdio.h>

main()
{
  printf("int: %d bytes long: %d bytes\n", sizeof(int), sizeof(int));
}
