Basic Data Types

  • + 8 comments

    try this hack (!)

    std::string s;
    for(int i=0; i<6; i++) {
        std::cin >> s;
        std::cout << s << std::endl;
    }