c++ program for input taking from user and print the value

description: This program for input taking from user and print the value

code:
/* c++ program for input taking from user and print the value */

#include <iostream>
using namespace std;

int main() 
{
 int var1;
        cout << "Enter the value of variable :";
 cin>>var1;
        cout<<endl<<"Value of variable is :"<<var1;
        return 0;
}
output:

Enter the value of variable :85

Value of variable is :85

LANGUAGE