class Location {
	Location(int lineNum, int wordOnLine) {
		this.lineNum = lineNum;
		this.wordOnLine = wordOnLine;
	}

	public String toString() {return "(" + lineNum + ", " + wordOnLine + ")";}

	int lineNum, wordOnLine;
}
