#include <string>
#include <iostream>

int main(){
    std::string line = "1 0 / 1 0 / 2 0 1 2 ,  P r o g r a m  N a m e ,  V e n d o r  N a m e ,  V 1 . 1 4 ";

    int lsize = line.size(), at = 1;
    for(int i = 1; i < lsize; ++i)
        if(line[i-1] == ' ') line[at++] = line[i];
        // if there is no space behind it, skip it, it is a broken space itself!
    line.resize(at);
    
    std::cout << line << std::endl;
}