public class Card {
	private int number;
	private int mark;
	private int color;
	public Card(int number,int mark,int color){
		this.number = number;
		this.mark = mark;
		this.color = color;
	}
	public int getNumber(){
		return number;
	}
	public int getMark(){
		return mark;
	}
	public int getColor(){
		return color;
	}
}

