import java.util.Vector;

class UsecaseFive_pl<A> {
	
	foo() { 
	   Vector<Integer> c;
	   c = new Vector<Integer>() ;
	   return c;
	}

}