long myNum = 15000000000L;System.out.println(myNum);
myNum
out
The “long” keyword represents a data type capable of storing whole numbers within the range of -9223372036854775808 to 9223372036854775807.
Ensure to terminate the value with an “L”: