#include <iostream>
#include <thread>
#include <algorithm>
void hi() {
std::cout << "Hello, World" << std::endl;
}
int main() {
std::thread t1(hi);
t1.join();
return 0;
}
I2luY2x1ZGUgPGlvc3RyZWFtPgojaW5jbHVkZSA8dGhyZWFkPgojaW5jbHVkZSA8YWxnb3JpdGhtPgoKdm9pZCBoaSgpIHsKc3RkOjpjb3V0IDw8ICJIZWxsbywgV29ybGQiIDw8IHN0ZDo6ZW5kbDsKfQoKaW50IG1haW4oKSB7CnN0ZDo6dGhyZWFkIHQxKGhpKTsKdDEuam9pbigpOwoKcmV0dXJuIDA7Cn0g