///Name: Morgan Kaplan
///Period: 5
///Project Name: First Program
///File Name: FirstProg.java
///Date: 8/18/2015
class FirstProg {
public static void main(String[] args) {
//prints out "Hello World" to the console
System.out.println("Hello World!!");
}
}