// Arup Guha
// 8/15/2019
// Completed Word Pair class for 2018 AP FR Question #2: WordPairList

public class WordPair {

	private String firstWord;
	private String secondWord;
	
	public WordPair(String first, String second) {
		firstWord = first;
		secondWord = second;
	}
	
	public String getFirst() {
		return firstWord;
	}
	
	public String getSecond() {
		return secondWord;
	}
	
	// I added this so you can see that the code's working...
	public String toString() {
		return "("+firstWord+", "+secondWord+")";
	}
}