/*
#include <iostream>
#include <string>
using namespace std;
int main()
{
string s;
int cnt;
getline(cin,s,'\n');
cnt=s.find('a');
cout << cnt ;
}
*/
/*
#include <iostream>
#include <string>
using namespace std;
class sample
{
int *p;
int size;
public:
sample(int n)
{
size=n; p=new int [n];
}
void read();
void write();
int big();
~sample();
};
void read()
{
p
}
int main()
{
sample s(10);
s.read();
s.write();
cout << s.big();
}
*/
/*
#include <iostream>
#include <string>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
string s;
getline(cin,s,'\n');
srand((unsigned)time(0));
char a=rand();
s.insert(2,a);
cout << s;
}
*/
/*
#include <iostream>
#include <string>
using namespace std;
class circle
{
int radius;
public:
void setradius(int radius)
{
this->radius=radius;
}
double getarea()
{
return 3.14*radius*radius;
}
};
int main()
{
int k;
circle circle[3];
for (int i=0; i<3; i++)
{
cin >> k;
circle[i].setradius(k);
}
int cnt=0;
for (int i=0; i<3; i++)
{
if (circle[i].getarea()>100)
{
cnt++;
}
}
cout << cnt;
}
*/
#include <iostream>
#include <string>
using namespace std;
class person
{
string name;
string tel;
public:
person();
string getname()
{
return name;
}
string gettel()
{
return tel;
}
void set(string name,string tel)
{
this->name=name;
this->tel=tel;
}
};
person::person()
{
this->name=name;
}
int main()
{
person s[3];
for (int i=0; i<3; i++)
{
string name;
string tel
cin >> name >> tel;
s[i] = new person();
s[i].set(name, tel);
}
for (int i=0; i<3; i++)
{
}
for (int i=0; i<3; i++)
{
}
}