#include #include using std::cout; using std::cin; using std::endl; int main(int argc, char **argv) { int num; cout << "Type a number: "; cin >> num; cout << "You typed: " << num << endl; return EXIT_SUCCESS; }