// Arup Guha
// 4/27/2019
// Class for AP CS FR Question #4: Successors

public class Position {

	private int row;
	private int col;
	
	public Position(int r, int c) {
		row = r;
		col = c;
	}
	
	public String toString() {
		return "("+row+", "+col+")";
	}
}