// Java uses 32 bits to represent an int variable
// Min int value: -2,147,483,648
// Max int value: 2,147,483,647
int minIntValue = Integer.MIN_VALUE; // variable storing min int value
int maxIntValue = Integer.MAX_VALUE; // variable storing max int value