/* This class represents a Song */
public class Song{
private String title; //title of the song
private String artist; //artist or band performing the song
private int minutes; //length of song (minutes part)
private int seconds; //length of song (seconds part)
public Song(String aSongTitle, String artistName, int min, int sec){
	title = aSongTitle;
	artist = artistName;
	minutes = min;
	seconds = sec;
}
public String getTitle(){return title;}
public String getArtist(){return artist;}
public int getMinutes(){return minutes;}
public int getSeconds(){return seconds;}
public String toString(){
	//Provide a string representation of the song
	//The string should look similar to
	//"The Girl From Ipanema by Stan Getz [5:22]"
	return title + " by " + artist + " [" + minutes + ":" + seconds + "]";
}
} //end class Song