#include <iostream>
using namespace std;
class Test{
public:
Test(int a, int b) {
x = a;
y = b;
}
~Test() {}
void print() {
cout << x << "*" << y << " ";
}
private:
int x;
int y;
};
int main() {
Test t[2] = {_______};
for(int i = 0; i < 2; i++)
t[i].print();
return 0;
}
1,2,3,4
(1,2),(3,4)
Test(1,2),Test(3,4)
1234