Algo lab/notes/sorting 67
ไปยังการนำทาง
ไปยังการค้นหา
For reading an input of unknown length, you can use this template:
int x;
while (cin >> x) {
// do something with x
}