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);
Student student=new Student();
student.setId(Integer.parseInt(sid));
student.setInfo(basicInfo);
student.setRank("N/A");
student.setTotalScore(sco+student.getTotalScore());