#include <iostream>
#include <string>
#include <sstream>
#include <iterator>
#include <vector>
int main() {
std::string str = "14 88 666";
std::stringstream ss(str);
std::istream_iterator<int> it(ss);
std::vector<int> nums(it, std::istream_iterator<int>());
for (int num:nums) std::cout << num << ' ';
return 0;
}
I2luY2x1ZGUgPGlvc3RyZWFtPgojaW5jbHVkZSA8c3RyaW5nPgojaW5jbHVkZSA8c3N0cmVhbT4KI2luY2x1ZGUgPGl0ZXJhdG9yPgojaW5jbHVkZSA8dmVjdG9yPgoKaW50IG1haW4oKSB7CglzdGQ6OnN0cmluZyBzdHIgPSAiMTQgODggNjY2IjsKCXN0ZDo6c3RyaW5nc3RyZWFtIHNzKHN0cik7CglzdGQ6OmlzdHJlYW1faXRlcmF0b3I8aW50PiBpdChzcyk7CgkKCXN0ZDo6dmVjdG9yPGludD4gbnVtcyhpdCwgc3RkOjppc3RyZWFtX2l0ZXJhdG9yPGludD4oKSk7CgoJZm9yIChpbnQgbnVtOm51bXMpIHN0ZDo6Y291dCA8PCBudW0gPDwgJyAnOwoJCglyZXR1cm4gMDsKfQ==