public class Main {
  public static void main(String[] args) 

	//main() is called a method, it is the main method of the program. 
	//we use public so that the main method can be accessible in the whole program.
	//void is used for no return type.
	//we use static so that we can work in it without creating an object for it.
	
	{
    System.out.println("Hello World");//System is a class
  }
}