#include <stdio.h>

int main() 
{
	int int_size_bytes = sizeof(int);
	int int_size_bits = int_size_bytes * 8;

	printf("The size of an int is %d bytes or %d bits.\n", int_size_bytes, int_size_bits);
	return(0);
}
