#include <iostream>
#include <string>
#include <vector>
#include <algorithm>

int main()
{
    char cStr[] = "Hello World";
    for (char c : cStr)
    {
        std::cout << c;
    }
    return 0;
}
