#include <stdio.h>

int main() {
  printf("An int has size %ld\n",sizeof(int));

  return 0;
}
