#include #include using namespace std; int main() { int x; cout << "Please enter an integer x" << endl; cin >> x; // reading an integer from keyboard and assign to x cout << "x = " << x << endl; }