class Student
{
private int sid;
private String sname;
void setdata(int sid,String sname)
{
this.sid=sid;
this.sname=sname;
}
int getsid()