
public interface Table {
	
	Integer get(String key);
	Table put(String key, Integer value);
	String show();
	

}

