mình làm bài toán nhập số lượng người rồi nhập tên cho từng người sau đó in ra hàng loạt. nhưng sau khi nhập số lượng người xong và nhấn enter thì không thể nhập tên cho người đầu tiên. mong các bạn chỉ giáo giúp. thanks

public static void main(string[] arvg) {
scanner datain = new scanner(system.in);
system.out.print("how many people you want to add? ");
int sl = datain.nextint();
string[] hs = new string[sl];
for (int i = 0; i < sl; i++) {
system.out.print("name of the " + (i + 1) + " people : ");
hs = datain.nextline();
}
system.out.println(hs[0]);
}

>>>>>>>>>>>>>>>>>>>>>

how many people you want to add? 2
name of the 1 people : name of the 2 people : build stopped (total time: 1 minute 23 seconds)