diff --git a/cpp/io/io.cpp b/cpp/io/io.cpp index 36503ca..e6fcc8d 100644 --- a/cpp/io/io.cpp +++ b/cpp/io/io.cpp @@ -14,9 +14,17 @@ int main(){ int input_2; input_1 = 0; input_2 = 0; - + + /* + * For some reason this is deliminated by spaces + * if only one number is given, it will wait for another input + */ std::cin >> input_1 >> input_2; + /* + * formated for legability + * we are putting all those things into std::cout in the order they appear + */ std::cout << "The numbers " << input_1 << " and "