#include #include #include using namespace std; int main() { setlocale(LC_ALL, "en_US.UTF-8"); wcout << L"Content-type: text/html; charset=UTF-8\n\n"; wcout << L"\n" << L"\n" << L"\n" << L"\n" << L"C++ Languages\n" << L"\n" << L"\n" << L"\n" << L"

\x2728 C++ Around the World \x2728

\n" << L"

English: C++ is pretty neat.

\n" << L"

Spanish: C++ es bastante genial.

\n" << L"

French: C++ est plut\x00F4t chouette.

\n" << L"

German: C++ ist ziemlich cool.

\n" << L"

Italian: C++ \x00E8 piuttosto bello.

\n" << L"

Portuguese: C++ \x00E9 muito legal.

\n" << L"

Russian: " << L"\x0421\x002B\x002B " << L"\x043E\x0447\x0435\x043D\x044C " << L"\x043A\x0440\x0443\x0442\x043E." << L"

\n" << L"

Chinese: " << L"\x0043\x002B\x002B" << L"\x5F88\x68D2\x3002" << L"

\n" << L"

Japanese: " << L"\x0043\x002B\x002B" << L"\x306F\x3059\x3054\x3044\x3067\x3059\x3002" << L"

\n" << L"

Korean: " << L"\x0043\x002B\x002B" << L"\xB294 \xC815\xB9D0 \xBA4B\xC838\xC694." << L"

\n" << L"\n" << L"\n"; return EXIT_SUCCESS; }