#include <iostream>
#include <string>
using namespace std;
class studentclass
{
private:
string strname;
string strclass;
int number;
string homeaddress;
int chinese;
int math;
int english;
public:
studentclass( )
{  
  strname = "Tom";
  homeaddress = "Beijing Road";
  number = 12342; 
}
string getstrname( ) {return strname;};
string gethomeaddress( ) {return homeaddress;};
int getnumber( ) {return number;};
};
int main( )
{   studentclass student;
    cout<<student.strname<<"live in "<<student.homeaddress<<" . He number is "<<student.number<<endl;
cin.get( );
return 0;