/// Name: Matthew Hughs
/// Period: 5
/// Program Name: Still Using Variables
/// File Name: Still.java
/// Date Finished: 9/15/2015
public class Still
{
public static void main( String[] args )
{
String myName;
int myYear;
myName = "Matthew Hughs";
myYear = 2016;
System.out.println( "My Name is " + myName + " and I'll graduate in " + myYear + "." );
}
}