class Person{
	String name;
	int age;
	void Person(String name,int age){
	this.name=name;
	this.age=age;
	}
}
