// Программа Привет, мир!
#include <iostream>

int main()
{
    std::cout << "Привет, мир!" << std::endl;
    return 0;
}