// making the variable
int variable = 0;
// input variable
cout << "Enter the value of variable : " <<endl;
cin>>variable;
// statement for out put
cout << " Value is : " << variable << "," <<"Twice value is : "<< 2(variable) <<","<<"Sqaure is " << variable * variable <<"."<<endl;