class Person
{
	private String name;
	private int AM;
	
	public Person(String name, int AM){
		this.name = name;
		this.AM = AM;
	}			
}