#include <iostream> using namespace std; int main() { //Declare an int variable int a; //take input using the standard cin operator cin >> a; //display the integer cout << a; return 0; }