public class Video
{
// properties
public String songName;
private String bandName;

// behaviors
public Video()  // fundamental behavior, constructor
   {
   System.out.print( "*****Hello****   " );
   }

// give me a place to start
public static void main(String args [] )
   {
   // classes are of no use. give me an object
   Video yourSong;
   yourSong = new  Video();
   }


}

