#include <iostream>
using namespace std;
class phone{
int n , s , m;//n الرقم الاول ، s الرقم الثاني ، m الرقم الثالث
public:
phone()
{
n=0;
s=0;
m=0;
}
void read_info()
{
cout<<"ادخل رقم الهاتف الى ثلاث اجزاء :"<<endl;
cin>> n>>s>>m;
}
void getdata()
{
cout<<n<<"-"<< s<< "( "<<m<< ")"<<endl;
}
friend void print(phone );
};
void print( phone p)
{
p.getdata();
}
int main ()
{
phone p;
p.read_info();
print(p);
}