// long numbers are marked with an 'l' or 'L' in Java
long num1 = 15l;
Long num2 = 32L;
long num3 = 7L;
Long num4 = 64l;
// they are the 64bit version of int/Integer
// watch it: float are marked and not double types like here for int/long
Long value = 1543543L;
//or
long value = 1543543L;
long minValue = -92,23,37,20,36,85,47,75,808;
long maxValue = 92,23,37,20,36,85,47,75,807;