package p;
class Test {
	void m(){
		Object object = Integer.valueOf(2);
		int i = ((Integer) object).intValue();
	}
}
