String street=request.getParameter("street");
String telephone=request.getParameter("telephone");
String age=request.getParameter("age");
String score=request.getParameter("score");
double sco = Double.parseDouble(score);
Address address=new Address();
address.setCity(city);
address.setCountry(country);
address.setStreet(street);
BasicInfo basicInfo=new BasicInfo();
basicInfo.setAddress(address);
basicInfo.setAge(Integer.parseInt(age));
basicInfo.setName(sname);
basicInfo.setTelephone(telephone);