int java

Java
// An int is a primitive data type.
// It is defined as followed:
int name = 5;
// The 5 is the number name holds.
// You can see an int as a box called (in this case) name and inside the box is the number 5.&&
  
Source

Also in Java: