You can also use the println() method to print numbers.
However, unlike text, numbers are not enclosed in double quotes.
System.out.println(3); System.out.println(358); System.out.println(50000);
You can also conduct mathematical computations within the println() method.
println()
System.out.println(2 * 5);