class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
In the above example we are using the println method without importing the package of it. So I want to know: What are the packages or classes included automatically?