The 8 primitive data types byte, short, int, long, char, boolean, float, and double are the types that store most raw numerical data in Java programs.
int aInt = 8; // The defining (number) part of this int declaration is called a literal.
int hexInt = 0x1a; // = 26; You can define literals...