<<<Index>>>

std::cin >> Formatted Input


#include <iostream>

void main( ) {

    int one;

    int two;

    std::cout << "Please enter two integers: ";

    std::cin >> one >> two;

}

 

<<<Index>>>