public class word {
	String text;
	int length;
	int row;
	int col;
	String direction;

	public word(String text, int length, int row, int col, String direction) {
		this.text = text;
		this.length = length;
		this.row = row;
		this.col = col;
		this.direction = direction;
	}

	@Override
	public String toString() {
		return String.format("%-15s %-5d %d,%-8d %-1s", text, length, row, col, direction);
	}

}