class intarray { public: int *A; int length; intarray(int s) { length=s; A = new int[length]; } };